gitextract_dp6xnqi7/ ├── .clang-format ├── .github/ │ └── workflows/ │ └── ci.yml ├── .gitignore ├── .gitmodules ├── .jazzy.json ├── Examples/ │ └── DBRoulette/ │ ├── README.md │ ├── iOS/ │ │ ├── CarthageProject/ │ │ │ └── DBRoulette/ │ │ │ ├── Cartfile │ │ │ ├── Cartfile.resolved │ │ │ ├── DBRoulette/ │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ └── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Base.lproj/ │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ ├── PhotoViewController.h │ │ │ │ ├── PhotoViewController.m │ │ │ │ ├── ViewController.h │ │ │ │ ├── ViewController.m │ │ │ │ └── main.m │ │ │ └── DBRoulette.xcodeproj/ │ │ │ └── project.pbxproj │ │ ├── CocoaPodsProject/ │ │ │ └── DBRoulette/ │ │ │ ├── DBRoulette/ │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ └── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Base.lproj/ │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ ├── PhotoViewController.h │ │ │ │ ├── PhotoViewController.m │ │ │ │ ├── ViewController.h │ │ │ │ ├── ViewController.m │ │ │ │ └── main.m │ │ │ ├── DBRoulette.xcodeproj/ │ │ │ │ └── project.pbxproj │ │ │ └── Podfile │ │ └── SubprojectProject/ │ │ └── DBRoulette/ │ │ ├── Cartfile │ │ ├── Cartfile.resolved │ │ ├── DBRoulette/ │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Assets.xcassets/ │ │ │ │ └── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj/ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ ├── PhotoViewController.h │ │ │ ├── PhotoViewController.m │ │ │ ├── ViewController.h │ │ │ ├── ViewController.m │ │ │ └── main.m │ │ └── DBRoulette.xcodeproj/ │ │ └── project.pbxproj │ └── macOS/ │ └── CarthageProject/ │ └── DBRoulette/ │ ├── Cartfile │ ├── Cartfile.resolved │ ├── DBRoulette/ │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Base.lproj/ │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── PhotoViewController.h │ │ ├── PhotoViewController.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ └── DBRoulette.xcodeproj/ │ └── project.pbxproj ├── Format/ │ ├── UmbrellaHeader.h │ ├── format_files.sh │ ├── generate_docs.sh │ ├── jazzy.css │ └── jazzy.json ├── LICENSE ├── ObjectiveDropboxOfficial.podspec ├── README.md ├── Source/ │ └── ObjectiveDropboxOfficial/ │ ├── Headers/ │ │ ├── Internal/ │ │ │ ├── DBClientsManager+Protected.h │ │ │ ├── Networking/ │ │ │ │ ├── DBDelegate.h │ │ │ │ ├── DBGlobalErrorResponseHandler+Internal.h │ │ │ │ ├── DBHandlerTypesInternal.h │ │ │ │ ├── DBSDKReachability.h │ │ │ │ ├── DBSessionData.h │ │ │ │ ├── DBTasks+Protected.h │ │ │ │ ├── DBTasksImpl.h │ │ │ │ ├── DBTransportBaseClient+Internal.h │ │ │ │ ├── DBURLSessionTask.h │ │ │ │ ├── DBURLSessionTaskResponseBlockWrapper.h │ │ │ │ └── DBURLSessionTaskWithTokenRefresh.h │ │ │ ├── OAuth/ │ │ │ │ ├── DBAccessToken+NSSecureCoding.h │ │ │ │ ├── DBAccessTokenProvider+Internal.h │ │ │ │ ├── DBOAuthConstants.h │ │ │ │ ├── DBOAuthManager+Protected.h │ │ │ │ ├── DBOAuthPKCESession.h │ │ │ │ ├── DBOAuthTokenRequest.h │ │ │ │ ├── DBOAuthUtils.h │ │ │ │ └── DBScopeRequest+Protected.h │ │ │ └── Resources/ │ │ │ ├── DBChunkInputStream.h │ │ │ └── DBSDKSystem.h │ │ ├── PlatformInternal/ │ │ │ └── iOS/ │ │ │ └── DBLoadingViewController.h │ │ └── Umbrella/ │ │ ├── ObjectiveDropboxOfficial.h │ │ └── ObjectiveDropboxOfficialLib.h │ ├── ObjectiveDropboxOfficial.xcodeproj/ │ │ ├── en.lproj/ │ │ │ └── Localizable.strings │ │ ├── project.pbxproj │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ ├── ObjectiveDropboxOfficial iOS.xcscheme │ │ └── ObjectiveDropboxOfficial macOS.xcscheme │ ├── Platform/ │ │ ├── ObjectiveDropboxOfficial_iOS/ │ │ │ ├── DBClientsManager+MobileAuth-iOS.h │ │ │ ├── DBClientsManager+MobileAuth-iOS.m │ │ │ ├── DBLoadingViewController.m │ │ │ ├── DBOAuthMobile-iOS.h │ │ │ ├── DBOAuthMobile-iOS.m │ │ │ ├── DBOAuthMobileManager-iOS.h │ │ │ ├── DBOAuthMobileManager-iOS.m │ │ │ ├── DBSDKImports-iOS.h │ │ │ ├── Info.plist │ │ │ └── OfficialPartners/ │ │ │ └── OpenWith/ │ │ │ ├── DBOfficialAppConnector-iOS.h │ │ │ ├── DBOfficialAppConnector-iOS.m │ │ │ ├── DBOpenWithInfo-iOS.h │ │ │ └── DBOpenWithInfo-iOS.m │ │ └── ObjectiveDropboxOfficial_macOS/ │ │ ├── DBClientsManager+DesktopAuth-macOS.h │ │ ├── DBClientsManager+DesktopAuth-macOS.m │ │ ├── DBOAuthDesktop-macOS.h │ │ ├── DBOAuthDesktop-macOS.m │ │ ├── DBSDKImports-macOS.h │ │ └── Info.plist │ ├── PrivacyInfo.xcprivacy │ └── Shared/ │ ├── Generated/ │ │ ├── ApiObjects/ │ │ │ ├── Account/ │ │ │ │ ├── DBAccountObjects.m │ │ │ │ └── Headers/ │ │ │ │ ├── DBACCOUNTPhotoSourceArg.h │ │ │ │ ├── DBACCOUNTSetProfilePhotoArg.h │ │ │ │ ├── DBACCOUNTSetProfilePhotoError.h │ │ │ │ └── DBACCOUNTSetProfilePhotoResult.h │ │ │ ├── Async/ │ │ │ │ ├── DBAsyncObjects.m │ │ │ │ └── Headers/ │ │ │ │ ├── DBASYNCLaunchEmptyResult.h │ │ │ │ ├── DBASYNCLaunchResultBase.h │ │ │ │ ├── DBASYNCPollArg.h │ │ │ │ ├── DBASYNCPollEmptyResult.h │ │ │ │ ├── DBASYNCPollError.h │ │ │ │ └── DBASYNCPollResultBase.h │ │ │ ├── Auth/ │ │ │ │ ├── DBAuthObjects.m │ │ │ │ └── Headers/ │ │ │ │ ├── DBAUTHAccessError.h │ │ │ │ ├── DBAUTHAuthError.h │ │ │ │ ├── DBAUTHInvalidAccountTypeError.h │ │ │ │ ├── DBAUTHPaperAccessError.h │ │ │ │ ├── DBAUTHRateLimitError.h │ │ │ │ ├── DBAUTHRateLimitReason.h │ │ │ │ ├── DBAUTHTokenFromOAuth1Arg.h │ │ │ │ ├── DBAUTHTokenFromOAuth1Error.h │ │ │ │ ├── DBAUTHTokenFromOAuth1Result.h │ │ │ │ └── DBAUTHTokenScopeError.h │ │ │ ├── Check/ │ │ │ │ ├── DBCheckObjects.m │ │ │ │ └── Headers/ │ │ │ │ ├── DBCHECKEchoArg.h │ │ │ │ └── DBCHECKEchoResult.h │ │ │ ├── Common/ │ │ │ │ ├── DBCommonObjects.m │ │ │ │ └── Headers/ │ │ │ │ ├── DBCOMMONPathRoot.h │ │ │ │ ├── DBCOMMONPathRootError.h │ │ │ │ ├── DBCOMMONRootInfo.h │ │ │ │ ├── DBCOMMONTeamRootInfo.h │ │ │ │ └── DBCOMMONUserRootInfo.h │ │ │ ├── Contacts/ │ │ │ │ ├── DBContactsObjects.m │ │ │ │ └── Headers/ │ │ │ │ ├── DBCONTACTSDeleteManualContactsArg.h │ │ │ │ └── DBCONTACTSDeleteManualContactsError.h │ │ │ ├── FileProperties/ │ │ │ │ ├── DBFilePropertiesObjects.m │ │ │ │ └── Headers/ │ │ │ │ ├── DBFILEPROPERTIESAddPropertiesArg.h │ │ │ │ ├── DBFILEPROPERTIESAddPropertiesError.h │ │ │ │ ├── DBFILEPROPERTIESAddTemplateArg.h │ │ │ │ ├── DBFILEPROPERTIESAddTemplateResult.h │ │ │ │ ├── DBFILEPROPERTIESGetTemplateArg.h │ │ │ │ ├── DBFILEPROPERTIESGetTemplateResult.h │ │ │ │ ├── DBFILEPROPERTIESInvalidPropertyGroupError.h │ │ │ │ ├── DBFILEPROPERTIESListTemplateResult.h │ │ │ │ ├── DBFILEPROPERTIESLogicalOperator.h │ │ │ │ ├── DBFILEPROPERTIESLookUpPropertiesError.h │ │ │ │ ├── DBFILEPROPERTIESLookupError.h │ │ │ │ ├── DBFILEPROPERTIESModifyTemplateError.h │ │ │ │ ├── DBFILEPROPERTIESOverwritePropertyGroupArg.h │ │ │ │ ├── DBFILEPROPERTIESPropertiesError.h │ │ │ │ ├── DBFILEPROPERTIESPropertiesSearchArg.h │ │ │ │ ├── DBFILEPROPERTIESPropertiesSearchContinueArg.h │ │ │ │ ├── DBFILEPROPERTIESPropertiesSearchContinueError.h │ │ │ │ ├── DBFILEPROPERTIESPropertiesSearchError.h │ │ │ │ ├── DBFILEPROPERTIESPropertiesSearchMatch.h │ │ │ │ ├── DBFILEPROPERTIESPropertiesSearchMode.h │ │ │ │ ├── DBFILEPROPERTIESPropertiesSearchQuery.h │ │ │ │ ├── DBFILEPROPERTIESPropertiesSearchResult.h │ │ │ │ ├── DBFILEPROPERTIESPropertyField.h │ │ │ │ ├── DBFILEPROPERTIESPropertyFieldTemplate.h │ │ │ │ ├── DBFILEPROPERTIESPropertyGroup.h │ │ │ │ ├── DBFILEPROPERTIESPropertyGroupTemplate.h │ │ │ │ ├── DBFILEPROPERTIESPropertyGroupUpdate.h │ │ │ │ ├── DBFILEPROPERTIESPropertyType.h │ │ │ │ ├── DBFILEPROPERTIESRemovePropertiesArg.h │ │ │ │ ├── DBFILEPROPERTIESRemovePropertiesError.h │ │ │ │ ├── DBFILEPROPERTIESRemoveTemplateArg.h │ │ │ │ ├── DBFILEPROPERTIESTemplateError.h │ │ │ │ ├── DBFILEPROPERTIESTemplateFilter.h │ │ │ │ ├── DBFILEPROPERTIESTemplateFilterBase.h │ │ │ │ ├── DBFILEPROPERTIESTemplateOwnerType.h │ │ │ │ ├── DBFILEPROPERTIESUpdatePropertiesArg.h │ │ │ │ ├── DBFILEPROPERTIESUpdatePropertiesError.h │ │ │ │ ├── DBFILEPROPERTIESUpdateTemplateArg.h │ │ │ │ └── DBFILEPROPERTIESUpdateTemplateResult.h │ │ │ ├── FileRequests/ │ │ │ │ ├── DBFileRequestsObjects.m │ │ │ │ └── Headers/ │ │ │ │ ├── DBFILEREQUESTSCountFileRequestsError.h │ │ │ │ ├── DBFILEREQUESTSCountFileRequestsResult.h │ │ │ │ ├── DBFILEREQUESTSCreateFileRequestArgs.h │ │ │ │ ├── DBFILEREQUESTSCreateFileRequestError.h │ │ │ │ ├── DBFILEREQUESTSDeleteAllClosedFileRequestsError.h │ │ │ │ ├── DBFILEREQUESTSDeleteAllClosedFileRequestsResult.h │ │ │ │ ├── DBFILEREQUESTSDeleteFileRequestArgs.h │ │ │ │ ├── DBFILEREQUESTSDeleteFileRequestError.h │ │ │ │ ├── DBFILEREQUESTSDeleteFileRequestsResult.h │ │ │ │ ├── DBFILEREQUESTSFileRequest.h │ │ │ │ ├── DBFILEREQUESTSFileRequestDeadline.h │ │ │ │ ├── DBFILEREQUESTSFileRequestError.h │ │ │ │ ├── DBFILEREQUESTSGeneralFileRequestsError.h │ │ │ │ ├── DBFILEREQUESTSGetFileRequestArgs.h │ │ │ │ ├── DBFILEREQUESTSGetFileRequestError.h │ │ │ │ ├── DBFILEREQUESTSGracePeriod.h │ │ │ │ ├── DBFILEREQUESTSListFileRequestsArg.h │ │ │ │ ├── DBFILEREQUESTSListFileRequestsContinueArg.h │ │ │ │ ├── DBFILEREQUESTSListFileRequestsContinueError.h │ │ │ │ ├── DBFILEREQUESTSListFileRequestsError.h │ │ │ │ ├── DBFILEREQUESTSListFileRequestsResult.h │ │ │ │ ├── DBFILEREQUESTSListFileRequestsV2Result.h │ │ │ │ ├── DBFILEREQUESTSUpdateFileRequestArgs.h │ │ │ │ ├── DBFILEREQUESTSUpdateFileRequestDeadline.h │ │ │ │ └── DBFILEREQUESTSUpdateFileRequestError.h │ │ │ ├── Files/ │ │ │ │ ├── DBFilesObjects.m │ │ │ │ └── Headers/ │ │ │ │ ├── DBFILESAddTagArg.h │ │ │ │ ├── DBFILESAddTagError.h │ │ │ │ ├── DBFILESAlphaGetMetadataArg.h │ │ │ │ ├── DBFILESAlphaGetMetadataError.h │ │ │ │ ├── DBFILESBaseTagError.h │ │ │ │ ├── DBFILESCommitInfo.h │ │ │ │ ├── DBFILESContentSyncSetting.h │ │ │ │ ├── DBFILESContentSyncSettingArg.h │ │ │ │ ├── DBFILESCreateFolderArg.h │ │ │ │ ├── DBFILESCreateFolderBatchArg.h │ │ │ │ ├── DBFILESCreateFolderBatchError.h │ │ │ │ ├── DBFILESCreateFolderBatchJobStatus.h │ │ │ │ ├── DBFILESCreateFolderBatchLaunch.h │ │ │ │ ├── DBFILESCreateFolderBatchResult.h │ │ │ │ ├── DBFILESCreateFolderBatchResultEntry.h │ │ │ │ ├── DBFILESCreateFolderEntryError.h │ │ │ │ ├── DBFILESCreateFolderEntryResult.h │ │ │ │ ├── DBFILESCreateFolderError.h │ │ │ │ ├── DBFILESCreateFolderResult.h │ │ │ │ ├── DBFILESDeleteArg.h │ │ │ │ ├── DBFILESDeleteBatchArg.h │ │ │ │ ├── DBFILESDeleteBatchError.h │ │ │ │ ├── DBFILESDeleteBatchJobStatus.h │ │ │ │ ├── DBFILESDeleteBatchLaunch.h │ │ │ │ ├── DBFILESDeleteBatchResult.h │ │ │ │ ├── DBFILESDeleteBatchResultData.h │ │ │ │ ├── DBFILESDeleteBatchResultEntry.h │ │ │ │ ├── DBFILESDeleteError.h │ │ │ │ ├── DBFILESDeleteResult.h │ │ │ │ ├── DBFILESDeletedMetadata.h │ │ │ │ ├── DBFILESDimensions.h │ │ │ │ ├── DBFILESDownloadArg.h │ │ │ │ ├── DBFILESDownloadError.h │ │ │ │ ├── DBFILESDownloadZipArg.h │ │ │ │ ├── DBFILESDownloadZipError.h │ │ │ │ ├── DBFILESDownloadZipResult.h │ │ │ │ ├── DBFILESExportArg.h │ │ │ │ ├── DBFILESExportError.h │ │ │ │ ├── DBFILESExportInfo.h │ │ │ │ ├── DBFILESExportMetadata.h │ │ │ │ ├── DBFILESExportResult.h │ │ │ │ ├── DBFILESFileCategory.h │ │ │ │ ├── DBFILESFileLock.h │ │ │ │ ├── DBFILESFileLockContent.h │ │ │ │ ├── DBFILESFileLockMetadata.h │ │ │ │ ├── DBFILESFileMetadata.h │ │ │ │ ├── DBFILESFileOpsResult.h │ │ │ │ ├── DBFILESFileSharingInfo.h │ │ │ │ ├── DBFILESFileStatus.h │ │ │ │ ├── DBFILESFolderMetadata.h │ │ │ │ ├── DBFILESFolderSharingInfo.h │ │ │ │ ├── DBFILESGetCopyReferenceArg.h │ │ │ │ ├── DBFILESGetCopyReferenceError.h │ │ │ │ ├── DBFILESGetCopyReferenceResult.h │ │ │ │ ├── DBFILESGetMetadataArg.h │ │ │ │ ├── DBFILESGetMetadataError.h │ │ │ │ ├── DBFILESGetTagsArg.h │ │ │ │ ├── DBFILESGetTagsResult.h │ │ │ │ ├── DBFILESGetTemporaryLinkArg.h │ │ │ │ ├── DBFILESGetTemporaryLinkError.h │ │ │ │ ├── DBFILESGetTemporaryLinkResult.h │ │ │ │ ├── DBFILESGetTemporaryUploadLinkArg.h │ │ │ │ ├── DBFILESGetTemporaryUploadLinkResult.h │ │ │ │ ├── DBFILESGetThumbnailBatchArg.h │ │ │ │ ├── DBFILESGetThumbnailBatchError.h │ │ │ │ ├── DBFILESGetThumbnailBatchResult.h │ │ │ │ ├── DBFILESGetThumbnailBatchResultData.h │ │ │ │ ├── DBFILESGetThumbnailBatchResultEntry.h │ │ │ │ ├── DBFILESGpsCoordinates.h │ │ │ │ ├── DBFILESHighlightSpan.h │ │ │ │ ├── DBFILESImportFormat.h │ │ │ │ ├── DBFILESListFolderArg.h │ │ │ │ ├── DBFILESListFolderContinueArg.h │ │ │ │ ├── DBFILESListFolderContinueError.h │ │ │ │ ├── DBFILESListFolderError.h │ │ │ │ ├── DBFILESListFolderGetLatestCursorResult.h │ │ │ │ ├── DBFILESListFolderLongpollArg.h │ │ │ │ ├── DBFILESListFolderLongpollError.h │ │ │ │ ├── DBFILESListFolderLongpollResult.h │ │ │ │ ├── DBFILESListFolderResult.h │ │ │ │ ├── DBFILESListRevisionsArg.h │ │ │ │ ├── DBFILESListRevisionsError.h │ │ │ │ ├── DBFILESListRevisionsMode.h │ │ │ │ ├── DBFILESListRevisionsResult.h │ │ │ │ ├── DBFILESLockConflictError.h │ │ │ │ ├── DBFILESLockFileArg.h │ │ │ │ ├── DBFILESLockFileBatchArg.h │ │ │ │ ├── DBFILESLockFileBatchResult.h │ │ │ │ ├── DBFILESLockFileError.h │ │ │ │ ├── DBFILESLockFileResult.h │ │ │ │ ├── DBFILESLockFileResultEntry.h │ │ │ │ ├── DBFILESLookupError.h │ │ │ │ ├── DBFILESMediaInfo.h │ │ │ │ ├── DBFILESMediaMetadata.h │ │ │ │ ├── DBFILESMetadata.h │ │ │ │ ├── DBFILESMetadataV2.h │ │ │ │ ├── DBFILESMinimalFileLinkMetadata.h │ │ │ │ ├── DBFILESMoveBatchArg.h │ │ │ │ ├── DBFILESMoveIntoFamilyError.h │ │ │ │ ├── DBFILESMoveIntoVaultError.h │ │ │ │ ├── DBFILESPaperContentError.h │ │ │ │ ├── DBFILESPaperCreateArg.h │ │ │ │ ├── DBFILESPaperCreateError.h │ │ │ │ ├── DBFILESPaperCreateResult.h │ │ │ │ ├── DBFILESPaperDocUpdatePolicy.h │ │ │ │ ├── DBFILESPaperUpdateArg.h │ │ │ │ ├── DBFILESPaperUpdateError.h │ │ │ │ ├── DBFILESPaperUpdateResult.h │ │ │ │ ├── DBFILESPathOrLink.h │ │ │ │ ├── DBFILESPathToTags.h │ │ │ │ ├── DBFILESPhotoMetadata.h │ │ │ │ ├── DBFILESPreviewArg.h │ │ │ │ ├── DBFILESPreviewError.h │ │ │ │ ├── DBFILESPreviewResult.h │ │ │ │ ├── DBFILESRelocationArg.h │ │ │ │ ├── DBFILESRelocationBatchArg.h │ │ │ │ ├── DBFILESRelocationBatchArgBase.h │ │ │ │ ├── DBFILESRelocationBatchError.h │ │ │ │ ├── DBFILESRelocationBatchErrorEntry.h │ │ │ │ ├── DBFILESRelocationBatchJobStatus.h │ │ │ │ ├── DBFILESRelocationBatchLaunch.h │ │ │ │ ├── DBFILESRelocationBatchResult.h │ │ │ │ ├── DBFILESRelocationBatchResultData.h │ │ │ │ ├── DBFILESRelocationBatchResultEntry.h │ │ │ │ ├── DBFILESRelocationBatchV2JobStatus.h │ │ │ │ ├── DBFILESRelocationBatchV2Launch.h │ │ │ │ ├── DBFILESRelocationBatchV2Result.h │ │ │ │ ├── DBFILESRelocationError.h │ │ │ │ ├── DBFILESRelocationPath.h │ │ │ │ ├── DBFILESRelocationResult.h │ │ │ │ ├── DBFILESRemoveTagArg.h │ │ │ │ ├── DBFILESRemoveTagError.h │ │ │ │ ├── DBFILESRestoreArg.h │ │ │ │ ├── DBFILESRestoreError.h │ │ │ │ ├── DBFILESSaveCopyReferenceArg.h │ │ │ │ ├── DBFILESSaveCopyReferenceError.h │ │ │ │ ├── DBFILESSaveCopyReferenceResult.h │ │ │ │ ├── DBFILESSaveUrlArg.h │ │ │ │ ├── DBFILESSaveUrlError.h │ │ │ │ ├── DBFILESSaveUrlJobStatus.h │ │ │ │ ├── DBFILESSaveUrlResult.h │ │ │ │ ├── DBFILESSearchArg.h │ │ │ │ ├── DBFILESSearchError.h │ │ │ │ ├── DBFILESSearchMatch.h │ │ │ │ ├── DBFILESSearchMatchFieldOptions.h │ │ │ │ ├── DBFILESSearchMatchType.h │ │ │ │ ├── DBFILESSearchMatchTypeV2.h │ │ │ │ ├── DBFILESSearchMatchV2.h │ │ │ │ ├── DBFILESSearchMode.h │ │ │ │ ├── DBFILESSearchOptions.h │ │ │ │ ├── DBFILESSearchOrderBy.h │ │ │ │ ├── DBFILESSearchResult.h │ │ │ │ ├── DBFILESSearchV2Arg.h │ │ │ │ ├── DBFILESSearchV2ContinueArg.h │ │ │ │ ├── DBFILESSearchV2Result.h │ │ │ │ ├── DBFILESSharedLink.h │ │ │ │ ├── DBFILESSharedLinkFileInfo.h │ │ │ │ ├── DBFILESSharingInfo.h │ │ │ │ ├── DBFILESSingleUserLock.h │ │ │ │ ├── DBFILESSymlinkInfo.h │ │ │ │ ├── DBFILESSyncSetting.h │ │ │ │ ├── DBFILESSyncSettingArg.h │ │ │ │ ├── DBFILESSyncSettingsError.h │ │ │ │ ├── DBFILESTag.h │ │ │ │ ├── DBFILESThumbnailArg.h │ │ │ │ ├── DBFILESThumbnailError.h │ │ │ │ ├── DBFILESThumbnailFormat.h │ │ │ │ ├── DBFILESThumbnailMode.h │ │ │ │ ├── DBFILESThumbnailSize.h │ │ │ │ ├── DBFILESThumbnailV2Arg.h │ │ │ │ ├── DBFILESThumbnailV2Error.h │ │ │ │ ├── DBFILESUnlockFileArg.h │ │ │ │ ├── DBFILESUnlockFileBatchArg.h │ │ │ │ ├── DBFILESUploadArg.h │ │ │ │ ├── DBFILESUploadError.h │ │ │ │ ├── DBFILESUploadSessionAppendArg.h │ │ │ │ ├── DBFILESUploadSessionAppendError.h │ │ │ │ ├── DBFILESUploadSessionCursor.h │ │ │ │ ├── DBFILESUploadSessionFinishArg.h │ │ │ │ ├── DBFILESUploadSessionFinishBatchArg.h │ │ │ │ ├── DBFILESUploadSessionFinishBatchJobStatus.h │ │ │ │ ├── DBFILESUploadSessionFinishBatchLaunch.h │ │ │ │ ├── DBFILESUploadSessionFinishBatchResult.h │ │ │ │ ├── DBFILESUploadSessionFinishBatchResultEntry.h │ │ │ │ ├── DBFILESUploadSessionFinishError.h │ │ │ │ ├── DBFILESUploadSessionLookupError.h │ │ │ │ ├── DBFILESUploadSessionOffsetError.h │ │ │ │ ├── DBFILESUploadSessionStartArg.h │ │ │ │ ├── DBFILESUploadSessionStartBatchArg.h │ │ │ │ ├── DBFILESUploadSessionStartBatchResult.h │ │ │ │ ├── DBFILESUploadSessionStartError.h │ │ │ │ ├── DBFILESUploadSessionStartResult.h │ │ │ │ ├── DBFILESUploadSessionType.h │ │ │ │ ├── DBFILESUploadWriteFailed.h │ │ │ │ ├── DBFILESUserGeneratedTag.h │ │ │ │ ├── DBFILESVideoMetadata.h │ │ │ │ ├── DBFILESWriteConflictError.h │ │ │ │ ├── DBFILESWriteError.h │ │ │ │ └── DBFILESWriteMode.h │ │ │ ├── Openid/ │ │ │ │ ├── DBOpenidObjects.m │ │ │ │ └── Headers/ │ │ │ │ ├── DBOPENIDOpenIdError.h │ │ │ │ ├── DBOPENIDUserInfoArgs.h │ │ │ │ ├── DBOPENIDUserInfoError.h │ │ │ │ └── DBOPENIDUserInfoResult.h │ │ │ ├── Paper/ │ │ │ │ ├── DBPaperObjects.m │ │ │ │ └── Headers/ │ │ │ │ ├── DBPAPERAddMember.h │ │ │ │ ├── DBPAPERAddPaperDocUser.h │ │ │ │ ├── DBPAPERAddPaperDocUserMemberResult.h │ │ │ │ ├── DBPAPERAddPaperDocUserResult.h │ │ │ │ ├── DBPAPERCursor.h │ │ │ │ ├── DBPAPERDocLookupError.h │ │ │ │ ├── DBPAPERDocSubscriptionLevel.h │ │ │ │ ├── DBPAPERExportFormat.h │ │ │ │ ├── DBPAPERFolder.h │ │ │ │ ├── DBPAPERFolderSharingPolicyType.h │ │ │ │ ├── DBPAPERFolderSubscriptionLevel.h │ │ │ │ ├── DBPAPERFoldersContainingPaperDoc.h │ │ │ │ ├── DBPAPERImportFormat.h │ │ │ │ ├── DBPAPERInviteeInfoWithPermissionLevel.h │ │ │ │ ├── DBPAPERListDocsCursorError.h │ │ │ │ ├── DBPAPERListPaperDocsArgs.h │ │ │ │ ├── DBPAPERListPaperDocsContinueArgs.h │ │ │ │ ├── DBPAPERListPaperDocsFilterBy.h │ │ │ │ ├── DBPAPERListPaperDocsResponse.h │ │ │ │ ├── DBPAPERListPaperDocsSortBy.h │ │ │ │ ├── DBPAPERListPaperDocsSortOrder.h │ │ │ │ ├── DBPAPERListUsersCursorError.h │ │ │ │ ├── DBPAPERListUsersOnFolderArgs.h │ │ │ │ ├── DBPAPERListUsersOnFolderContinueArgs.h │ │ │ │ ├── DBPAPERListUsersOnFolderResponse.h │ │ │ │ ├── DBPAPERListUsersOnPaperDocArgs.h │ │ │ │ ├── DBPAPERListUsersOnPaperDocContinueArgs.h │ │ │ │ ├── DBPAPERListUsersOnPaperDocResponse.h │ │ │ │ ├── DBPAPERPaperApiBaseError.h │ │ │ │ ├── DBPAPERPaperApiCursorError.h │ │ │ │ ├── DBPAPERPaperDocCreateArgs.h │ │ │ │ ├── DBPAPERPaperDocCreateError.h │ │ │ │ ├── DBPAPERPaperDocCreateUpdateResult.h │ │ │ │ ├── DBPAPERPaperDocExport.h │ │ │ │ ├── DBPAPERPaperDocExportResult.h │ │ │ │ ├── DBPAPERPaperDocPermissionLevel.h │ │ │ │ ├── DBPAPERPaperDocSharingPolicy.h │ │ │ │ ├── DBPAPERPaperDocUpdateArgs.h │ │ │ │ ├── DBPAPERPaperDocUpdateError.h │ │ │ │ ├── DBPAPERPaperDocUpdatePolicy.h │ │ │ │ ├── DBPAPERPaperFolderCreateArg.h │ │ │ │ ├── DBPAPERPaperFolderCreateError.h │ │ │ │ ├── DBPAPERPaperFolderCreateResult.h │ │ │ │ ├── DBPAPERRefPaperDoc.h │ │ │ │ ├── DBPAPERRemovePaperDocUser.h │ │ │ │ ├── DBPAPERSharingPolicy.h │ │ │ │ ├── DBPAPERSharingPublicPolicyType.h │ │ │ │ ├── DBPAPERSharingTeamPolicyType.h │ │ │ │ ├── DBPAPERUserInfoWithPermissionLevel.h │ │ │ │ └── DBPAPERUserOnPaperDocFilter.h │ │ │ ├── SecondaryEmails/ │ │ │ │ ├── DBSecondaryEmailsObjects.m │ │ │ │ └── Headers/ │ │ │ │ └── DBSECONDARYEMAILSSecondaryEmail.h │ │ │ ├── SeenState/ │ │ │ │ ├── DBSeenStateObjects.m │ │ │ │ └── Headers/ │ │ │ │ └── DBSEENSTATEPlatformType.h │ │ │ ├── Sharing/ │ │ │ │ ├── DBSharingObjects.m │ │ │ │ └── Headers/ │ │ │ │ ├── DBSHARINGAccessInheritance.h │ │ │ │ ├── DBSHARINGAccessLevel.h │ │ │ │ ├── DBSHARINGAclUpdatePolicy.h │ │ │ │ ├── DBSHARINGAddFileMemberArgs.h │ │ │ │ ├── DBSHARINGAddFileMemberError.h │ │ │ │ ├── DBSHARINGAddFolderMemberArg.h │ │ │ │ ├── DBSHARINGAddFolderMemberError.h │ │ │ │ ├── DBSHARINGAddMember.h │ │ │ │ ├── DBSHARINGAddMemberSelectorError.h │ │ │ │ ├── DBSHARINGAlphaResolvedVisibility.h │ │ │ │ ├── DBSHARINGAudienceExceptionContentInfo.h │ │ │ │ ├── DBSHARINGAudienceExceptions.h │ │ │ │ ├── DBSHARINGAudienceRestrictingSharedFolder.h │ │ │ │ ├── DBSHARINGCollectionLinkMetadata.h │ │ │ │ ├── DBSHARINGCreateSharedLinkArg.h │ │ │ │ ├── DBSHARINGCreateSharedLinkError.h │ │ │ │ ├── DBSHARINGCreateSharedLinkWithSettingsArg.h │ │ │ │ ├── DBSHARINGCreateSharedLinkWithSettingsError.h │ │ │ │ ├── DBSHARINGExpectedSharedContentLinkMetadata.h │ │ │ │ ├── DBSHARINGFileAction.h │ │ │ │ ├── DBSHARINGFileErrorResult.h │ │ │ │ ├── DBSHARINGFileLinkMetadata.h │ │ │ │ ├── DBSHARINGFileMemberActionError.h │ │ │ │ ├── DBSHARINGFileMemberActionIndividualResult.h │ │ │ │ ├── DBSHARINGFileMemberActionResult.h │ │ │ │ ├── DBSHARINGFileMemberRemoveActionResult.h │ │ │ │ ├── DBSHARINGFilePermission.h │ │ │ │ ├── DBSHARINGFolderAction.h │ │ │ │ ├── DBSHARINGFolderLinkMetadata.h │ │ │ │ ├── DBSHARINGFolderPermission.h │ │ │ │ ├── DBSHARINGFolderPolicy.h │ │ │ │ ├── DBSHARINGGetFileMetadataArg.h │ │ │ │ ├── DBSHARINGGetFileMetadataBatchArg.h │ │ │ │ ├── DBSHARINGGetFileMetadataBatchResult.h │ │ │ │ ├── DBSHARINGGetFileMetadataError.h │ │ │ │ ├── DBSHARINGGetFileMetadataIndividualResult.h │ │ │ │ ├── DBSHARINGGetMetadataArgs.h │ │ │ │ ├── DBSHARINGGetSharedLinkFileError.h │ │ │ │ ├── DBSHARINGGetSharedLinkMetadataArg.h │ │ │ │ ├── DBSHARINGGetSharedLinksArg.h │ │ │ │ ├── DBSHARINGGetSharedLinksError.h │ │ │ │ ├── DBSHARINGGetSharedLinksResult.h │ │ │ │ ├── DBSHARINGGroupInfo.h │ │ │ │ ├── DBSHARINGGroupMembershipInfo.h │ │ │ │ ├── DBSHARINGInsufficientPlan.h │ │ │ │ ├── DBSHARINGInsufficientQuotaAmounts.h │ │ │ │ ├── DBSHARINGInviteeInfo.h │ │ │ │ ├── DBSHARINGInviteeMembershipInfo.h │ │ │ │ ├── DBSHARINGJobError.h │ │ │ │ ├── DBSHARINGJobStatus.h │ │ │ │ ├── DBSHARINGLinkAccessLevel.h │ │ │ │ ├── DBSHARINGLinkAction.h │ │ │ │ ├── DBSHARINGLinkAudience.h │ │ │ │ ├── DBSHARINGLinkAudienceDisallowedReason.h │ │ │ │ ├── DBSHARINGLinkAudienceOption.h │ │ │ │ ├── DBSHARINGLinkExpiry.h │ │ │ │ ├── DBSHARINGLinkMetadata.h │ │ │ │ ├── DBSHARINGLinkPassword.h │ │ │ │ ├── DBSHARINGLinkPermission.h │ │ │ │ ├── DBSHARINGLinkPermissions.h │ │ │ │ ├── DBSHARINGLinkSettings.h │ │ │ │ ├── DBSHARINGListFileMembersArg.h │ │ │ │ ├── DBSHARINGListFileMembersBatchArg.h │ │ │ │ ├── DBSHARINGListFileMembersBatchResult.h │ │ │ │ ├── DBSHARINGListFileMembersContinueArg.h │ │ │ │ ├── DBSHARINGListFileMembersContinueError.h │ │ │ │ ├── DBSHARINGListFileMembersCountResult.h │ │ │ │ ├── DBSHARINGListFileMembersError.h │ │ │ │ ├── DBSHARINGListFileMembersIndividualResult.h │ │ │ │ ├── DBSHARINGListFilesArg.h │ │ │ │ ├── DBSHARINGListFilesContinueArg.h │ │ │ │ ├── DBSHARINGListFilesContinueError.h │ │ │ │ ├── DBSHARINGListFilesResult.h │ │ │ │ ├── DBSHARINGListFolderMembersArgs.h │ │ │ │ ├── DBSHARINGListFolderMembersContinueArg.h │ │ │ │ ├── DBSHARINGListFolderMembersContinueError.h │ │ │ │ ├── DBSHARINGListFolderMembersCursorArg.h │ │ │ │ ├── DBSHARINGListFoldersArgs.h │ │ │ │ ├── DBSHARINGListFoldersContinueArg.h │ │ │ │ ├── DBSHARINGListFoldersContinueError.h │ │ │ │ ├── DBSHARINGListFoldersResult.h │ │ │ │ ├── DBSHARINGListSharedLinksArg.h │ │ │ │ ├── DBSHARINGListSharedLinksError.h │ │ │ │ ├── DBSHARINGListSharedLinksResult.h │ │ │ │ ├── DBSHARINGMemberAccessLevelResult.h │ │ │ │ ├── DBSHARINGMemberAction.h │ │ │ │ ├── DBSHARINGMemberPermission.h │ │ │ │ ├── DBSHARINGMemberPolicy.h │ │ │ │ ├── DBSHARINGMemberSelector.h │ │ │ │ ├── DBSHARINGMembershipInfo.h │ │ │ │ ├── DBSHARINGModifySharedLinkSettingsArgs.h │ │ │ │ ├── DBSHARINGModifySharedLinkSettingsError.h │ │ │ │ ├── DBSHARINGMountFolderArg.h │ │ │ │ ├── DBSHARINGMountFolderError.h │ │ │ │ ├── DBSHARINGParentFolderAccessInfo.h │ │ │ │ ├── DBSHARINGPathLinkMetadata.h │ │ │ │ ├── DBSHARINGPendingUploadMode.h │ │ │ │ ├── DBSHARINGPermissionDeniedReason.h │ │ │ │ ├── DBSHARINGRelinquishFileMembershipArg.h │ │ │ │ ├── DBSHARINGRelinquishFileMembershipError.h │ │ │ │ ├── DBSHARINGRelinquishFolderMembershipArg.h │ │ │ │ ├── DBSHARINGRelinquishFolderMembershipError.h │ │ │ │ ├── DBSHARINGRemoveFileMemberArg.h │ │ │ │ ├── DBSHARINGRemoveFileMemberError.h │ │ │ │ ├── DBSHARINGRemoveFolderMemberArg.h │ │ │ │ ├── DBSHARINGRemoveFolderMemberError.h │ │ │ │ ├── DBSHARINGRemoveMemberJobStatus.h │ │ │ │ ├── DBSHARINGRequestedLinkAccessLevel.h │ │ │ │ ├── DBSHARINGRequestedVisibility.h │ │ │ │ ├── DBSHARINGResolvedVisibility.h │ │ │ │ ├── DBSHARINGRevokeSharedLinkArg.h │ │ │ │ ├── DBSHARINGRevokeSharedLinkError.h │ │ │ │ ├── DBSHARINGSetAccessInheritanceArg.h │ │ │ │ ├── DBSHARINGSetAccessInheritanceError.h │ │ │ │ ├── DBSHARINGShareFolderArg.h │ │ │ │ ├── DBSHARINGShareFolderArgBase.h │ │ │ │ ├── DBSHARINGShareFolderError.h │ │ │ │ ├── DBSHARINGShareFolderErrorBase.h │ │ │ │ ├── DBSHARINGShareFolderJobStatus.h │ │ │ │ ├── DBSHARINGShareFolderLaunch.h │ │ │ │ ├── DBSHARINGSharePathError.h │ │ │ │ ├── DBSHARINGSharedContentLinkMetadata.h │ │ │ │ ├── DBSHARINGSharedContentLinkMetadataBase.h │ │ │ │ ├── DBSHARINGSharedFileMembers.h │ │ │ │ ├── DBSHARINGSharedFileMetadata.h │ │ │ │ ├── DBSHARINGSharedFolderAccessError.h │ │ │ │ ├── DBSHARINGSharedFolderMemberError.h │ │ │ │ ├── DBSHARINGSharedFolderMembers.h │ │ │ │ ├── DBSHARINGSharedFolderMetadata.h │ │ │ │ ├── DBSHARINGSharedFolderMetadataBase.h │ │ │ │ ├── DBSHARINGSharedLinkAccessFailureReason.h │ │ │ │ ├── DBSHARINGSharedLinkAlreadyExistsMetadata.h │ │ │ │ ├── DBSHARINGSharedLinkError.h │ │ │ │ ├── DBSHARINGSharedLinkMetadata.h │ │ │ │ ├── DBSHARINGSharedLinkPolicy.h │ │ │ │ ├── DBSHARINGSharedLinkSettings.h │ │ │ │ ├── DBSHARINGSharedLinkSettingsError.h │ │ │ │ ├── DBSHARINGSharingFileAccessError.h │ │ │ │ ├── DBSHARINGSharingUserError.h │ │ │ │ ├── DBSHARINGTeamMemberInfo.h │ │ │ │ ├── DBSHARINGTransferFolderArg.h │ │ │ │ ├── DBSHARINGTransferFolderError.h │ │ │ │ ├── DBSHARINGUnmountFolderArg.h │ │ │ │ ├── DBSHARINGUnmountFolderError.h │ │ │ │ ├── DBSHARINGUnshareFileArg.h │ │ │ │ ├── DBSHARINGUnshareFileError.h │ │ │ │ ├── DBSHARINGUnshareFolderArg.h │ │ │ │ ├── DBSHARINGUnshareFolderError.h │ │ │ │ ├── DBSHARINGUpdateFileMemberArgs.h │ │ │ │ ├── DBSHARINGUpdateFolderMemberArg.h │ │ │ │ ├── DBSHARINGUpdateFolderMemberError.h │ │ │ │ ├── DBSHARINGUpdateFolderPolicyArg.h │ │ │ │ ├── DBSHARINGUpdateFolderPolicyError.h │ │ │ │ ├── DBSHARINGUserFileMembershipInfo.h │ │ │ │ ├── DBSHARINGUserInfo.h │ │ │ │ ├── DBSHARINGUserMembershipInfo.h │ │ │ │ ├── DBSHARINGViewerInfoPolicy.h │ │ │ │ ├── DBSHARINGVisibility.h │ │ │ │ ├── DBSHARINGVisibilityPolicy.h │ │ │ │ └── DBSHARINGVisibilityPolicyDisallowedReason.h │ │ │ ├── Team/ │ │ │ │ ├── DBTeamObjects.m │ │ │ │ └── Headers/ │ │ │ │ ├── DBTEAMActiveWebSession.h │ │ │ │ ├── DBTEAMAddSecondaryEmailResult.h │ │ │ │ ├── DBTEAMAddSecondaryEmailsArg.h │ │ │ │ ├── DBTEAMAddSecondaryEmailsError.h │ │ │ │ ├── DBTEAMAddSecondaryEmailsResult.h │ │ │ │ ├── DBTEAMAdminTier.h │ │ │ │ ├── DBTEAMApiApp.h │ │ │ │ ├── DBTEAMBaseDfbReport.h │ │ │ │ ├── DBTEAMBaseTeamFolderError.h │ │ │ │ ├── DBTEAMCustomQuotaError.h │ │ │ │ ├── DBTEAMCustomQuotaResult.h │ │ │ │ ├── DBTEAMCustomQuotaUsersArg.h │ │ │ │ ├── DBTEAMDateRange.h │ │ │ │ ├── DBTEAMDateRangeError.h │ │ │ │ ├── DBTEAMDeleteSecondaryEmailResult.h │ │ │ │ ├── DBTEAMDeleteSecondaryEmailsArg.h │ │ │ │ ├── DBTEAMDeleteSecondaryEmailsResult.h │ │ │ │ ├── DBTEAMDesktopClientSession.h │ │ │ │ ├── DBTEAMDesktopPlatform.h │ │ │ │ ├── DBTEAMDeviceSession.h │ │ │ │ ├── DBTEAMDeviceSessionArg.h │ │ │ │ ├── DBTEAMDevicesActive.h │ │ │ │ ├── DBTEAMExcludedUsersListArg.h │ │ │ │ ├── DBTEAMExcludedUsersListContinueArg.h │ │ │ │ ├── DBTEAMExcludedUsersListContinueError.h │ │ │ │ ├── DBTEAMExcludedUsersListError.h │ │ │ │ ├── DBTEAMExcludedUsersListResult.h │ │ │ │ ├── DBTEAMExcludedUsersUpdateArg.h │ │ │ │ ├── DBTEAMExcludedUsersUpdateError.h │ │ │ │ ├── DBTEAMExcludedUsersUpdateResult.h │ │ │ │ ├── DBTEAMExcludedUsersUpdateStatus.h │ │ │ │ ├── DBTEAMFeature.h │ │ │ │ ├── DBTEAMFeatureValue.h │ │ │ │ ├── DBTEAMFeaturesGetValuesBatchArg.h │ │ │ │ ├── DBTEAMFeaturesGetValuesBatchError.h │ │ │ │ ├── DBTEAMFeaturesGetValuesBatchResult.h │ │ │ │ ├── DBTEAMGetActivityReport.h │ │ │ │ ├── DBTEAMGetDevicesReport.h │ │ │ │ ├── DBTEAMGetMembershipReport.h │ │ │ │ ├── DBTEAMGetStorageReport.h │ │ │ │ ├── DBTEAMGroupAccessType.h │ │ │ │ ├── DBTEAMGroupCreateArg.h │ │ │ │ ├── DBTEAMGroupCreateError.h │ │ │ │ ├── DBTEAMGroupDeleteError.h │ │ │ │ ├── DBTEAMGroupFullInfo.h │ │ │ │ ├── DBTEAMGroupMemberInfo.h │ │ │ │ ├── DBTEAMGroupMemberSelector.h │ │ │ │ ├── DBTEAMGroupMemberSelectorError.h │ │ │ │ ├── DBTEAMGroupMemberSetAccessTypeError.h │ │ │ │ ├── DBTEAMGroupMembersAddArg.h │ │ │ │ ├── DBTEAMGroupMembersAddError.h │ │ │ │ ├── DBTEAMGroupMembersChangeResult.h │ │ │ │ ├── DBTEAMGroupMembersRemoveArg.h │ │ │ │ ├── DBTEAMGroupMembersRemoveError.h │ │ │ │ ├── DBTEAMGroupMembersSelector.h │ │ │ │ ├── DBTEAMGroupMembersSelectorError.h │ │ │ │ ├── DBTEAMGroupMembersSetAccessTypeArg.h │ │ │ │ ├── DBTEAMGroupSelector.h │ │ │ │ ├── DBTEAMGroupSelectorError.h │ │ │ │ ├── DBTEAMGroupSelectorWithTeamGroupError.h │ │ │ │ ├── DBTEAMGroupUpdateArgs.h │ │ │ │ ├── DBTEAMGroupUpdateError.h │ │ │ │ ├── DBTEAMGroupsGetInfoError.h │ │ │ │ ├── DBTEAMGroupsGetInfoItem.h │ │ │ │ ├── DBTEAMGroupsListArg.h │ │ │ │ ├── DBTEAMGroupsListContinueArg.h │ │ │ │ ├── DBTEAMGroupsListContinueError.h │ │ │ │ ├── DBTEAMGroupsListResult.h │ │ │ │ ├── DBTEAMGroupsMembersListArg.h │ │ │ │ ├── DBTEAMGroupsMembersListContinueArg.h │ │ │ │ ├── DBTEAMGroupsMembersListContinueError.h │ │ │ │ ├── DBTEAMGroupsMembersListResult.h │ │ │ │ ├── DBTEAMGroupsPollError.h │ │ │ │ ├── DBTEAMGroupsSelector.h │ │ │ │ ├── DBTEAMHasTeamFileEventsValue.h │ │ │ │ ├── DBTEAMHasTeamSelectiveSyncValue.h │ │ │ │ ├── DBTEAMHasTeamSharedDropboxValue.h │ │ │ │ ├── DBTEAMIncludeMembersArg.h │ │ │ │ ├── DBTEAMLegalHoldHeldRevisionMetadata.h │ │ │ │ ├── DBTEAMLegalHoldPolicy.h │ │ │ │ ├── DBTEAMLegalHoldStatus.h │ │ │ │ ├── DBTEAMLegalHoldsError.h │ │ │ │ ├── DBTEAMLegalHoldsGetPolicyArg.h │ │ │ │ ├── DBTEAMLegalHoldsGetPolicyError.h │ │ │ │ ├── DBTEAMLegalHoldsListHeldRevisionResult.h │ │ │ │ ├── DBTEAMLegalHoldsListHeldRevisionsArg.h │ │ │ │ ├── DBTEAMLegalHoldsListHeldRevisionsContinueArg.h │ │ │ │ ├── DBTEAMLegalHoldsListHeldRevisionsContinueError.h │ │ │ │ ├── DBTEAMLegalHoldsListHeldRevisionsError.h │ │ │ │ ├── DBTEAMLegalHoldsListPoliciesArg.h │ │ │ │ ├── DBTEAMLegalHoldsListPoliciesError.h │ │ │ │ ├── DBTEAMLegalHoldsListPoliciesResult.h │ │ │ │ ├── DBTEAMLegalHoldsPolicyCreateArg.h │ │ │ │ ├── DBTEAMLegalHoldsPolicyCreateError.h │ │ │ │ ├── DBTEAMLegalHoldsPolicyReleaseArg.h │ │ │ │ ├── DBTEAMLegalHoldsPolicyReleaseError.h │ │ │ │ ├── DBTEAMLegalHoldsPolicyUpdateArg.h │ │ │ │ ├── DBTEAMLegalHoldsPolicyUpdateError.h │ │ │ │ ├── DBTEAMListMemberAppsArg.h │ │ │ │ ├── DBTEAMListMemberAppsError.h │ │ │ │ ├── DBTEAMListMemberAppsResult.h │ │ │ │ ├── DBTEAMListMemberDevicesArg.h │ │ │ │ ├── DBTEAMListMemberDevicesError.h │ │ │ │ ├── DBTEAMListMemberDevicesResult.h │ │ │ │ ├── DBTEAMListMembersAppsArg.h │ │ │ │ ├── DBTEAMListMembersAppsError.h │ │ │ │ ├── DBTEAMListMembersAppsResult.h │ │ │ │ ├── DBTEAMListMembersDevicesArg.h │ │ │ │ ├── DBTEAMListMembersDevicesError.h │ │ │ │ ├── DBTEAMListMembersDevicesResult.h │ │ │ │ ├── DBTEAMListTeamAppsArg.h │ │ │ │ ├── DBTEAMListTeamAppsError.h │ │ │ │ ├── DBTEAMListTeamAppsResult.h │ │ │ │ ├── DBTEAMListTeamDevicesArg.h │ │ │ │ ├── DBTEAMListTeamDevicesError.h │ │ │ │ ├── DBTEAMListTeamDevicesResult.h │ │ │ │ ├── DBTEAMMemberAccess.h │ │ │ │ ├── DBTEAMMemberAddArg.h │ │ │ │ ├── DBTEAMMemberAddArgBase.h │ │ │ │ ├── DBTEAMMemberAddResult.h │ │ │ │ ├── DBTEAMMemberAddResultBase.h │ │ │ │ ├── DBTEAMMemberAddV2Arg.h │ │ │ │ ├── DBTEAMMemberAddV2Result.h │ │ │ │ ├── DBTEAMMemberDevices.h │ │ │ │ ├── DBTEAMMemberLinkedApps.h │ │ │ │ ├── DBTEAMMemberProfile.h │ │ │ │ ├── DBTEAMMemberSelectorError.h │ │ │ │ ├── DBTEAMMembersAddArg.h │ │ │ │ ├── DBTEAMMembersAddArgBase.h │ │ │ │ ├── DBTEAMMembersAddJobStatus.h │ │ │ │ ├── DBTEAMMembersAddJobStatusV2Result.h │ │ │ │ ├── DBTEAMMembersAddLaunch.h │ │ │ │ ├── DBTEAMMembersAddLaunchV2Result.h │ │ │ │ ├── DBTEAMMembersAddV2Arg.h │ │ │ │ ├── DBTEAMMembersDataTransferArg.h │ │ │ │ ├── DBTEAMMembersDeactivateArg.h │ │ │ │ ├── DBTEAMMembersDeactivateBaseArg.h │ │ │ │ ├── DBTEAMMembersDeactivateError.h │ │ │ │ ├── DBTEAMMembersDeleteProfilePhotoArg.h │ │ │ │ ├── DBTEAMMembersDeleteProfilePhotoError.h │ │ │ │ ├── DBTEAMMembersGetAvailableTeamMemberRolesResult.h │ │ │ │ ├── DBTEAMMembersGetInfoArgs.h │ │ │ │ ├── DBTEAMMembersGetInfoError.h │ │ │ │ ├── DBTEAMMembersGetInfoItem.h │ │ │ │ ├── DBTEAMMembersGetInfoItemBase.h │ │ │ │ ├── DBTEAMMembersGetInfoItemV2.h │ │ │ │ ├── DBTEAMMembersGetInfoV2Arg.h │ │ │ │ ├── DBTEAMMembersGetInfoV2Result.h │ │ │ │ ├── DBTEAMMembersInfo.h │ │ │ │ ├── DBTEAMMembersListArg.h │ │ │ │ ├── DBTEAMMembersListContinueArg.h │ │ │ │ ├── DBTEAMMembersListContinueError.h │ │ │ │ ├── DBTEAMMembersListError.h │ │ │ │ ├── DBTEAMMembersListResult.h │ │ │ │ ├── DBTEAMMembersListV2Result.h │ │ │ │ ├── DBTEAMMembersRecoverArg.h │ │ │ │ ├── DBTEAMMembersRecoverError.h │ │ │ │ ├── DBTEAMMembersRemoveArg.h │ │ │ │ ├── DBTEAMMembersRemoveError.h │ │ │ │ ├── DBTEAMMembersSendWelcomeError.h │ │ │ │ ├── DBTEAMMembersSetPermissions2Arg.h │ │ │ │ ├── DBTEAMMembersSetPermissions2Error.h │ │ │ │ ├── DBTEAMMembersSetPermissions2Result.h │ │ │ │ ├── DBTEAMMembersSetPermissionsArg.h │ │ │ │ ├── DBTEAMMembersSetPermissionsError.h │ │ │ │ ├── DBTEAMMembersSetPermissionsResult.h │ │ │ │ ├── DBTEAMMembersSetProfileArg.h │ │ │ │ ├── DBTEAMMembersSetProfileError.h │ │ │ │ ├── DBTEAMMembersSetProfilePhotoArg.h │ │ │ │ ├── DBTEAMMembersSetProfilePhotoError.h │ │ │ │ ├── DBTEAMMembersSuspendError.h │ │ │ │ ├── DBTEAMMembersTransferFilesError.h │ │ │ │ ├── DBTEAMMembersTransferFormerMembersFilesError.h │ │ │ │ ├── DBTEAMMembersUnsuspendArg.h │ │ │ │ ├── DBTEAMMembersUnsuspendError.h │ │ │ │ ├── DBTEAMMobileClientPlatform.h │ │ │ │ ├── DBTEAMMobileClientSession.h │ │ │ │ ├── DBTEAMNamespaceMetadata.h │ │ │ │ ├── DBTEAMNamespaceType.h │ │ │ │ ├── DBTEAMRemoveCustomQuotaResult.h │ │ │ │ ├── DBTEAMRemovedStatus.h │ │ │ │ ├── DBTEAMResendSecondaryEmailResult.h │ │ │ │ ├── DBTEAMResendVerificationEmailArg.h │ │ │ │ ├── DBTEAMResendVerificationEmailResult.h │ │ │ │ ├── DBTEAMRevokeDesktopClientArg.h │ │ │ │ ├── DBTEAMRevokeDeviceSessionArg.h │ │ │ │ ├── DBTEAMRevokeDeviceSessionBatchArg.h │ │ │ │ ├── DBTEAMRevokeDeviceSessionBatchError.h │ │ │ │ ├── DBTEAMRevokeDeviceSessionBatchResult.h │ │ │ │ ├── DBTEAMRevokeDeviceSessionError.h │ │ │ │ ├── DBTEAMRevokeDeviceSessionStatus.h │ │ │ │ ├── DBTEAMRevokeLinkedApiAppArg.h │ │ │ │ ├── DBTEAMRevokeLinkedApiAppBatchArg.h │ │ │ │ ├── DBTEAMRevokeLinkedAppBatchError.h │ │ │ │ ├── DBTEAMRevokeLinkedAppBatchResult.h │ │ │ │ ├── DBTEAMRevokeLinkedAppError.h │ │ │ │ ├── DBTEAMRevokeLinkedAppStatus.h │ │ │ │ ├── DBTEAMSetCustomQuotaArg.h │ │ │ │ ├── DBTEAMSetCustomQuotaError.h │ │ │ │ ├── DBTEAMSharingAllowlistAddArgs.h │ │ │ │ ├── DBTEAMSharingAllowlistAddError.h │ │ │ │ ├── DBTEAMSharingAllowlistAddResponse.h │ │ │ │ ├── DBTEAMSharingAllowlistListArg.h │ │ │ │ ├── DBTEAMSharingAllowlistListContinueArg.h │ │ │ │ ├── DBTEAMSharingAllowlistListContinueError.h │ │ │ │ ├── DBTEAMSharingAllowlistListError.h │ │ │ │ ├── DBTEAMSharingAllowlistListResponse.h │ │ │ │ ├── DBTEAMSharingAllowlistRemoveArgs.h │ │ │ │ ├── DBTEAMSharingAllowlistRemoveError.h │ │ │ │ ├── DBTEAMSharingAllowlistRemoveResponse.h │ │ │ │ ├── DBTEAMStorageBucket.h │ │ │ │ ├── DBTEAMTeamFolderAccessError.h │ │ │ │ ├── DBTEAMTeamFolderActivateError.h │ │ │ │ ├── DBTEAMTeamFolderArchiveArg.h │ │ │ │ ├── DBTEAMTeamFolderArchiveError.h │ │ │ │ ├── DBTEAMTeamFolderArchiveJobStatus.h │ │ │ │ ├── DBTEAMTeamFolderArchiveLaunch.h │ │ │ │ ├── DBTEAMTeamFolderCreateArg.h │ │ │ │ ├── DBTEAMTeamFolderCreateError.h │ │ │ │ ├── DBTEAMTeamFolderGetInfoItem.h │ │ │ │ ├── DBTEAMTeamFolderIdArg.h │ │ │ │ ├── DBTEAMTeamFolderIdListArg.h │ │ │ │ ├── DBTEAMTeamFolderInvalidStatusError.h │ │ │ │ ├── DBTEAMTeamFolderListArg.h │ │ │ │ ├── DBTEAMTeamFolderListContinueArg.h │ │ │ │ ├── DBTEAMTeamFolderListContinueError.h │ │ │ │ ├── DBTEAMTeamFolderListError.h │ │ │ │ ├── DBTEAMTeamFolderListResult.h │ │ │ │ ├── DBTEAMTeamFolderMetadata.h │ │ │ │ ├── DBTEAMTeamFolderPermanentlyDeleteError.h │ │ │ │ ├── DBTEAMTeamFolderRenameArg.h │ │ │ │ ├── DBTEAMTeamFolderRenameError.h │ │ │ │ ├── DBTEAMTeamFolderStatus.h │ │ │ │ ├── DBTEAMTeamFolderTeamSharedDropboxError.h │ │ │ │ ├── DBTEAMTeamFolderUpdateSyncSettingsArg.h │ │ │ │ ├── DBTEAMTeamFolderUpdateSyncSettingsError.h │ │ │ │ ├── DBTEAMTeamGetInfoResult.h │ │ │ │ ├── DBTEAMTeamMemberInfo.h │ │ │ │ ├── DBTEAMTeamMemberInfoV2.h │ │ │ │ ├── DBTEAMTeamMemberInfoV2Result.h │ │ │ │ ├── DBTEAMTeamMemberProfile.h │ │ │ │ ├── DBTEAMTeamMemberRole.h │ │ │ │ ├── DBTEAMTeamMemberStatus.h │ │ │ │ ├── DBTEAMTeamMembershipType.h │ │ │ │ ├── DBTEAMTeamNamespacesListArg.h │ │ │ │ ├── DBTEAMTeamNamespacesListContinueArg.h │ │ │ │ ├── DBTEAMTeamNamespacesListContinueError.h │ │ │ │ ├── DBTEAMTeamNamespacesListError.h │ │ │ │ ├── DBTEAMTeamNamespacesListResult.h │ │ │ │ ├── DBTEAMTeamReportFailureReason.h │ │ │ │ ├── DBTEAMTokenGetAuthenticatedAdminError.h │ │ │ │ ├── DBTEAMTokenGetAuthenticatedAdminResult.h │ │ │ │ ├── DBTEAMUploadApiRateLimitValue.h │ │ │ │ ├── DBTEAMUserAddResult.h │ │ │ │ ├── DBTEAMUserCustomQuotaArg.h │ │ │ │ ├── DBTEAMUserCustomQuotaResult.h │ │ │ │ ├── DBTEAMUserDeleteEmailsResult.h │ │ │ │ ├── DBTEAMUserDeleteResult.h │ │ │ │ ├── DBTEAMUserResendEmailsResult.h │ │ │ │ ├── DBTEAMUserResendResult.h │ │ │ │ ├── DBTEAMUserSecondaryEmailsArg.h │ │ │ │ ├── DBTEAMUserSecondaryEmailsResult.h │ │ │ │ ├── DBTEAMUserSelectorArg.h │ │ │ │ ├── DBTEAMUserSelectorError.h │ │ │ │ └── DBTEAMUsersSelectorArg.h │ │ │ ├── TeamCommon/ │ │ │ │ ├── DBTeamCommonObjects.m │ │ │ │ └── Headers/ │ │ │ │ ├── DBTEAMCOMMONGroupManagementType.h │ │ │ │ ├── DBTEAMCOMMONGroupSummary.h │ │ │ │ ├── DBTEAMCOMMONGroupType.h │ │ │ │ ├── DBTEAMCOMMONMemberSpaceLimitType.h │ │ │ │ └── DBTEAMCOMMONTimeRange.h │ │ │ ├── TeamLog/ │ │ │ │ ├── DBTeamLogObjects.m │ │ │ │ └── Headers/ │ │ │ │ ├── DBTEAMLOGAccessMethodLogInfo.h │ │ │ │ ├── DBTEAMLOGAccountCaptureAvailability.h │ │ │ │ ├── DBTEAMLOGAccountCaptureChangeAvailabilityDetails.h │ │ │ │ ├── DBTEAMLOGAccountCaptureChangeAvailabilityType.h │ │ │ │ ├── DBTEAMLOGAccountCaptureChangePolicyDetails.h │ │ │ │ ├── DBTEAMLOGAccountCaptureChangePolicyType.h │ │ │ │ ├── DBTEAMLOGAccountCaptureMigrateAccountDetails.h │ │ │ │ ├── DBTEAMLOGAccountCaptureMigrateAccountType.h │ │ │ │ ├── DBTEAMLOGAccountCaptureNotificationEmailsSentDetails.h │ │ │ │ ├── DBTEAMLOGAccountCaptureNotificationEmailsSentType.h │ │ │ │ ├── DBTEAMLOGAccountCaptureNotificationType.h │ │ │ │ ├── DBTEAMLOGAccountCapturePolicy.h │ │ │ │ ├── DBTEAMLOGAccountCaptureRelinquishAccountDetails.h │ │ │ │ ├── DBTEAMLOGAccountCaptureRelinquishAccountType.h │ │ │ │ ├── DBTEAMLOGAccountLockOrUnlockedDetails.h │ │ │ │ ├── DBTEAMLOGAccountLockOrUnlockedType.h │ │ │ │ ├── DBTEAMLOGAccountState.h │ │ │ │ ├── DBTEAMLOGActionDetails.h │ │ │ │ ├── DBTEAMLOGActorLogInfo.h │ │ │ │ ├── DBTEAMLOGAdminAlertCategoryEnum.h │ │ │ │ ├── DBTEAMLOGAdminAlertGeneralStateEnum.h │ │ │ │ ├── DBTEAMLOGAdminAlertSeverityEnum.h │ │ │ │ ├── DBTEAMLOGAdminAlertingAlertConfiguration.h │ │ │ │ ├── DBTEAMLOGAdminAlertingAlertSensitivity.h │ │ │ │ ├── DBTEAMLOGAdminAlertingAlertStateChangedDetails.h │ │ │ │ ├── DBTEAMLOGAdminAlertingAlertStateChangedType.h │ │ │ │ ├── DBTEAMLOGAdminAlertingAlertStatePolicy.h │ │ │ │ ├── DBTEAMLOGAdminAlertingChangedAlertConfigDetails.h │ │ │ │ ├── DBTEAMLOGAdminAlertingChangedAlertConfigType.h │ │ │ │ ├── DBTEAMLOGAdminAlertingTriggeredAlertDetails.h │ │ │ │ ├── DBTEAMLOGAdminAlertingTriggeredAlertType.h │ │ │ │ ├── DBTEAMLOGAdminConsoleAppPermission.h │ │ │ │ ├── DBTEAMLOGAdminConsoleAppPolicy.h │ │ │ │ ├── DBTEAMLOGAdminEmailRemindersChangedDetails.h │ │ │ │ ├── DBTEAMLOGAdminEmailRemindersChangedType.h │ │ │ │ ├── DBTEAMLOGAdminEmailRemindersPolicy.h │ │ │ │ ├── DBTEAMLOGAdminRole.h │ │ │ │ ├── DBTEAMLOGAlertRecipientsSettingType.h │ │ │ │ ├── DBTEAMLOGAllowDownloadDisabledDetails.h │ │ │ │ ├── DBTEAMLOGAllowDownloadDisabledType.h │ │ │ │ ├── DBTEAMLOGAllowDownloadEnabledDetails.h │ │ │ │ ├── DBTEAMLOGAllowDownloadEnabledType.h │ │ │ │ ├── DBTEAMLOGApiSessionLogInfo.h │ │ │ │ ├── DBTEAMLOGAppBlockedByPermissionsDetails.h │ │ │ │ ├── DBTEAMLOGAppBlockedByPermissionsType.h │ │ │ │ ├── DBTEAMLOGAppLinkTeamDetails.h │ │ │ │ ├── DBTEAMLOGAppLinkTeamType.h │ │ │ │ ├── DBTEAMLOGAppLinkUserDetails.h │ │ │ │ ├── DBTEAMLOGAppLinkUserType.h │ │ │ │ ├── DBTEAMLOGAppLogInfo.h │ │ │ │ ├── DBTEAMLOGAppPermissionsChangedDetails.h │ │ │ │ ├── DBTEAMLOGAppPermissionsChangedType.h │ │ │ │ ├── DBTEAMLOGAppUnlinkTeamDetails.h │ │ │ │ ├── DBTEAMLOGAppUnlinkTeamType.h │ │ │ │ ├── DBTEAMLOGAppUnlinkUserDetails.h │ │ │ │ ├── DBTEAMLOGAppUnlinkUserType.h │ │ │ │ ├── DBTEAMLOGApplyNamingConventionDetails.h │ │ │ │ ├── DBTEAMLOGApplyNamingConventionType.h │ │ │ │ ├── DBTEAMLOGAssetLogInfo.h │ │ │ │ ├── DBTEAMLOGBackupAdminInvitationSentDetails.h │ │ │ │ ├── DBTEAMLOGBackupAdminInvitationSentType.h │ │ │ │ ├── DBTEAMLOGBackupInvitationOpenedDetails.h │ │ │ │ ├── DBTEAMLOGBackupInvitationOpenedType.h │ │ │ │ ├── DBTEAMLOGBackupStatus.h │ │ │ │ ├── DBTEAMLOGBinderAddPageDetails.h │ │ │ │ ├── DBTEAMLOGBinderAddPageType.h │ │ │ │ ├── DBTEAMLOGBinderAddSectionDetails.h │ │ │ │ ├── DBTEAMLOGBinderAddSectionType.h │ │ │ │ ├── DBTEAMLOGBinderRemovePageDetails.h │ │ │ │ ├── DBTEAMLOGBinderRemovePageType.h │ │ │ │ ├── DBTEAMLOGBinderRemoveSectionDetails.h │ │ │ │ ├── DBTEAMLOGBinderRemoveSectionType.h │ │ │ │ ├── DBTEAMLOGBinderRenamePageDetails.h │ │ │ │ ├── DBTEAMLOGBinderRenamePageType.h │ │ │ │ ├── DBTEAMLOGBinderRenameSectionDetails.h │ │ │ │ ├── DBTEAMLOGBinderRenameSectionType.h │ │ │ │ ├── DBTEAMLOGBinderReorderPageDetails.h │ │ │ │ ├── DBTEAMLOGBinderReorderPageType.h │ │ │ │ ├── DBTEAMLOGBinderReorderSectionDetails.h │ │ │ │ ├── DBTEAMLOGBinderReorderSectionType.h │ │ │ │ ├── DBTEAMLOGCameraUploadsPolicy.h │ │ │ │ ├── DBTEAMLOGCameraUploadsPolicyChangedDetails.h │ │ │ │ ├── DBTEAMLOGCameraUploadsPolicyChangedType.h │ │ │ │ ├── DBTEAMLOGCaptureTranscriptPolicy.h │ │ │ │ ├── DBTEAMLOGCaptureTranscriptPolicyChangedDetails.h │ │ │ │ ├── DBTEAMLOGCaptureTranscriptPolicyChangedType.h │ │ │ │ ├── DBTEAMLOGCertificate.h │ │ │ │ ├── DBTEAMLOGChangeLinkExpirationPolicy.h │ │ │ │ ├── DBTEAMLOGChangedEnterpriseAdminRoleDetails.h │ │ │ │ ├── DBTEAMLOGChangedEnterpriseAdminRoleType.h │ │ │ │ ├── DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails.h │ │ │ │ ├── DBTEAMLOGChangedEnterpriseConnectedTeamStatusType.h │ │ │ │ ├── DBTEAMLOGClassificationChangePolicyDetails.h │ │ │ │ ├── DBTEAMLOGClassificationChangePolicyType.h │ │ │ │ ├── DBTEAMLOGClassificationCreateReportDetails.h │ │ │ │ ├── DBTEAMLOGClassificationCreateReportFailDetails.h │ │ │ │ ├── DBTEAMLOGClassificationCreateReportFailType.h │ │ │ │ ├── DBTEAMLOGClassificationCreateReportType.h │ │ │ │ ├── DBTEAMLOGClassificationPolicyEnumWrapper.h │ │ │ │ ├── DBTEAMLOGClassificationType.h │ │ │ │ ├── DBTEAMLOGCollectionShareDetails.h │ │ │ │ ├── DBTEAMLOGCollectionShareType.h │ │ │ │ ├── DBTEAMLOGComputerBackupPolicy.h │ │ │ │ ├── DBTEAMLOGComputerBackupPolicyChangedDetails.h │ │ │ │ ├── DBTEAMLOGComputerBackupPolicyChangedType.h │ │ │ │ ├── DBTEAMLOGConnectedTeamName.h │ │ │ │ ├── DBTEAMLOGContentAdministrationPolicyChangedDetails.h │ │ │ │ ├── DBTEAMLOGContentAdministrationPolicyChangedType.h │ │ │ │ ├── DBTEAMLOGContentPermanentDeletePolicy.h │ │ │ │ ├── DBTEAMLOGContextLogInfo.h │ │ │ │ ├── DBTEAMLOGCreateFolderDetails.h │ │ │ │ ├── DBTEAMLOGCreateFolderType.h │ │ │ │ ├── DBTEAMLOGCreateTeamInviteLinkDetails.h │ │ │ │ ├── DBTEAMLOGCreateTeamInviteLinkType.h │ │ │ │ ├── DBTEAMLOGDataPlacementRestrictionChangePolicyDetails.h │ │ │ │ ├── DBTEAMLOGDataPlacementRestrictionChangePolicyType.h │ │ │ │ ├── DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails.h │ │ │ │ ├── DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType.h │ │ │ │ ├── DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails.h │ │ │ │ ├── DBTEAMLOGDataResidencyMigrationRequestSuccessfulType.h │ │ │ │ ├── DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails.h │ │ │ │ ├── DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType.h │ │ │ │ ├── DBTEAMLOGDefaultLinkExpirationDaysPolicy.h │ │ │ │ ├── DBTEAMLOGDeleteTeamInviteLinkDetails.h │ │ │ │ ├── DBTEAMLOGDeleteTeamInviteLinkType.h │ │ │ │ ├── DBTEAMLOGDesktopDeviceSessionLogInfo.h │ │ │ │ ├── DBTEAMLOGDesktopSessionLogInfo.h │ │ │ │ ├── DBTEAMLOGDeviceApprovalsAddExceptionDetails.h │ │ │ │ ├── DBTEAMLOGDeviceApprovalsAddExceptionType.h │ │ │ │ ├── DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails.h │ │ │ │ ├── DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType.h │ │ │ │ ├── DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails.h │ │ │ │ ├── DBTEAMLOGDeviceApprovalsChangeMobilePolicyType.h │ │ │ │ ├── DBTEAMLOGDeviceApprovalsChangeOverageActionDetails.h │ │ │ │ ├── DBTEAMLOGDeviceApprovalsChangeOverageActionType.h │ │ │ │ ├── DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails.h │ │ │ │ ├── DBTEAMLOGDeviceApprovalsChangeUnlinkActionType.h │ │ │ │ ├── DBTEAMLOGDeviceApprovalsPolicy.h │ │ │ │ ├── DBTEAMLOGDeviceApprovalsRemoveExceptionDetails.h │ │ │ │ ├── DBTEAMLOGDeviceApprovalsRemoveExceptionType.h │ │ │ │ ├── DBTEAMLOGDeviceChangeIpDesktopDetails.h │ │ │ │ ├── DBTEAMLOGDeviceChangeIpDesktopType.h │ │ │ │ ├── DBTEAMLOGDeviceChangeIpMobileDetails.h │ │ │ │ ├── DBTEAMLOGDeviceChangeIpMobileType.h │ │ │ │ ├── DBTEAMLOGDeviceChangeIpWebDetails.h │ │ │ │ ├── DBTEAMLOGDeviceChangeIpWebType.h │ │ │ │ ├── DBTEAMLOGDeviceDeleteOnUnlinkFailDetails.h │ │ │ │ ├── DBTEAMLOGDeviceDeleteOnUnlinkFailType.h │ │ │ │ ├── DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails.h │ │ │ │ ├── DBTEAMLOGDeviceDeleteOnUnlinkSuccessType.h │ │ │ │ ├── DBTEAMLOGDeviceLinkFailDetails.h │ │ │ │ ├── DBTEAMLOGDeviceLinkFailType.h │ │ │ │ ├── DBTEAMLOGDeviceLinkSuccessDetails.h │ │ │ │ ├── DBTEAMLOGDeviceLinkSuccessType.h │ │ │ │ ├── DBTEAMLOGDeviceManagementDisabledDetails.h │ │ │ │ ├── DBTEAMLOGDeviceManagementDisabledType.h │ │ │ │ ├── DBTEAMLOGDeviceManagementEnabledDetails.h │ │ │ │ ├── DBTEAMLOGDeviceManagementEnabledType.h │ │ │ │ ├── DBTEAMLOGDeviceSessionLogInfo.h │ │ │ │ ├── DBTEAMLOGDeviceSyncBackupStatusChangedDetails.h │ │ │ │ ├── DBTEAMLOGDeviceSyncBackupStatusChangedType.h │ │ │ │ ├── DBTEAMLOGDeviceType.h │ │ │ │ ├── DBTEAMLOGDeviceUnlinkDetails.h │ │ │ │ ├── DBTEAMLOGDeviceUnlinkPolicy.h │ │ │ │ ├── DBTEAMLOGDeviceUnlinkType.h │ │ │ │ ├── DBTEAMLOGDirectoryRestrictionsAddMembersDetails.h │ │ │ │ ├── DBTEAMLOGDirectoryRestrictionsAddMembersType.h │ │ │ │ ├── DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails.h │ │ │ │ ├── DBTEAMLOGDirectoryRestrictionsRemoveMembersType.h │ │ │ │ ├── DBTEAMLOGDisabledDomainInvitesDetails.h │ │ │ │ ├── DBTEAMLOGDisabledDomainInvitesType.h │ │ │ │ ├── DBTEAMLOGDispositionActionType.h │ │ │ │ ├── DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails.h │ │ │ │ ├── DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType.h │ │ │ │ ├── DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails.h │ │ │ │ ├── DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType.h │ │ │ │ ├── DBTEAMLOGDomainInvitesEmailExistingUsersDetails.h │ │ │ │ ├── DBTEAMLOGDomainInvitesEmailExistingUsersType.h │ │ │ │ ├── DBTEAMLOGDomainInvitesRequestToJoinTeamDetails.h │ │ │ │ ├── DBTEAMLOGDomainInvitesRequestToJoinTeamType.h │ │ │ │ ├── DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails.h │ │ │ │ ├── DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType.h │ │ │ │ ├── DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails.h │ │ │ │ ├── DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType.h │ │ │ │ ├── DBTEAMLOGDomainVerificationAddDomainFailDetails.h │ │ │ │ ├── DBTEAMLOGDomainVerificationAddDomainFailType.h │ │ │ │ ├── DBTEAMLOGDomainVerificationAddDomainSuccessDetails.h │ │ │ │ ├── DBTEAMLOGDomainVerificationAddDomainSuccessType.h │ │ │ │ ├── DBTEAMLOGDomainVerificationRemoveDomainDetails.h │ │ │ │ ├── DBTEAMLOGDomainVerificationRemoveDomainType.h │ │ │ │ ├── DBTEAMLOGDownloadPolicyType.h │ │ │ │ ├── DBTEAMLOGDropboxPasswordsExportedDetails.h │ │ │ │ ├── DBTEAMLOGDropboxPasswordsExportedType.h │ │ │ │ ├── DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails.h │ │ │ │ ├── DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType.h │ │ │ │ ├── DBTEAMLOGDropboxPasswordsPolicy.h │ │ │ │ ├── DBTEAMLOGDropboxPasswordsPolicyChangedDetails.h │ │ │ │ ├── DBTEAMLOGDropboxPasswordsPolicyChangedType.h │ │ │ │ ├── DBTEAMLOGDurationLogInfo.h │ │ │ │ ├── DBTEAMLOGEmailIngestPolicy.h │ │ │ │ ├── DBTEAMLOGEmailIngestPolicyChangedDetails.h │ │ │ │ ├── DBTEAMLOGEmailIngestPolicyChangedType.h │ │ │ │ ├── DBTEAMLOGEmailIngestReceiveFileDetails.h │ │ │ │ ├── DBTEAMLOGEmailIngestReceiveFileType.h │ │ │ │ ├── DBTEAMLOGEmmAddExceptionDetails.h │ │ │ │ ├── DBTEAMLOGEmmAddExceptionType.h │ │ │ │ ├── DBTEAMLOGEmmChangePolicyDetails.h │ │ │ │ ├── DBTEAMLOGEmmChangePolicyType.h │ │ │ │ ├── DBTEAMLOGEmmCreateExceptionsReportDetails.h │ │ │ │ ├── DBTEAMLOGEmmCreateExceptionsReportType.h │ │ │ │ ├── DBTEAMLOGEmmCreateUsageReportDetails.h │ │ │ │ ├── DBTEAMLOGEmmCreateUsageReportType.h │ │ │ │ ├── DBTEAMLOGEmmErrorDetails.h │ │ │ │ ├── DBTEAMLOGEmmErrorType.h │ │ │ │ ├── DBTEAMLOGEmmRefreshAuthTokenDetails.h │ │ │ │ ├── DBTEAMLOGEmmRefreshAuthTokenType.h │ │ │ │ ├── DBTEAMLOGEmmRemoveExceptionDetails.h │ │ │ │ ├── DBTEAMLOGEmmRemoveExceptionType.h │ │ │ │ ├── DBTEAMLOGEnabledDomainInvitesDetails.h │ │ │ │ ├── DBTEAMLOGEnabledDomainInvitesType.h │ │ │ │ ├── DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails.h │ │ │ │ ├── DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType.h │ │ │ │ ├── DBTEAMLOGEndedEnterpriseAdminSessionDetails.h │ │ │ │ ├── DBTEAMLOGEndedEnterpriseAdminSessionType.h │ │ │ │ ├── DBTEAMLOGEnforceLinkPasswordPolicy.h │ │ │ │ ├── DBTEAMLOGEnterpriseSettingsLockingDetails.h │ │ │ │ ├── DBTEAMLOGEnterpriseSettingsLockingType.h │ │ │ │ ├── DBTEAMLOGEventCategory.h │ │ │ │ ├── DBTEAMLOGEventDetails.h │ │ │ │ ├── DBTEAMLOGEventType.h │ │ │ │ ├── DBTEAMLOGEventTypeArg.h │ │ │ │ ├── DBTEAMLOGExportMembersReportDetails.h │ │ │ │ ├── DBTEAMLOGExportMembersReportFailDetails.h │ │ │ │ ├── DBTEAMLOGExportMembersReportFailType.h │ │ │ │ ├── DBTEAMLOGExportMembersReportType.h │ │ │ │ ├── DBTEAMLOGExtendedVersionHistoryChangePolicyDetails.h │ │ │ │ ├── DBTEAMLOGExtendedVersionHistoryChangePolicyType.h │ │ │ │ ├── DBTEAMLOGExtendedVersionHistoryPolicy.h │ │ │ │ ├── DBTEAMLOGExternalDriveBackupEligibilityStatus.h │ │ │ │ ├── DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails.h │ │ │ │ ├── DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType.h │ │ │ │ ├── DBTEAMLOGExternalDriveBackupPolicy.h │ │ │ │ ├── DBTEAMLOGExternalDriveBackupPolicyChangedDetails.h │ │ │ │ ├── DBTEAMLOGExternalDriveBackupPolicyChangedType.h │ │ │ │ ├── DBTEAMLOGExternalDriveBackupStatus.h │ │ │ │ ├── DBTEAMLOGExternalDriveBackupStatusChangedDetails.h │ │ │ │ ├── DBTEAMLOGExternalDriveBackupStatusChangedType.h │ │ │ │ ├── DBTEAMLOGExternalSharingCreateReportDetails.h │ │ │ │ ├── DBTEAMLOGExternalSharingCreateReportType.h │ │ │ │ ├── DBTEAMLOGExternalSharingReportFailedDetails.h │ │ │ │ ├── DBTEAMLOGExternalSharingReportFailedType.h │ │ │ │ ├── DBTEAMLOGExternalUserLogInfo.h │ │ │ │ ├── DBTEAMLOGFailureDetailsLogInfo.h │ │ │ │ ├── DBTEAMLOGFedAdminRole.h │ │ │ │ ├── DBTEAMLOGFedExtraDetails.h │ │ │ │ ├── DBTEAMLOGFedHandshakeAction.h │ │ │ │ ├── DBTEAMLOGFederationStatusChangeAdditionalInfo.h │ │ │ │ ├── DBTEAMLOGFileAddCommentDetails.h │ │ │ │ ├── DBTEAMLOGFileAddCommentType.h │ │ │ │ ├── DBTEAMLOGFileAddDetails.h │ │ │ │ ├── DBTEAMLOGFileAddFromAutomationDetails.h │ │ │ │ ├── DBTEAMLOGFileAddFromAutomationType.h │ │ │ │ ├── DBTEAMLOGFileAddType.h │ │ │ │ ├── DBTEAMLOGFileChangeCommentSubscriptionDetails.h │ │ │ │ ├── DBTEAMLOGFileChangeCommentSubscriptionType.h │ │ │ │ ├── DBTEAMLOGFileCommentNotificationPolicy.h │ │ │ │ ├── DBTEAMLOGFileCommentsChangePolicyDetails.h │ │ │ │ ├── DBTEAMLOGFileCommentsChangePolicyType.h │ │ │ │ ├── DBTEAMLOGFileCommentsPolicy.h │ │ │ │ ├── DBTEAMLOGFileCopyDetails.h │ │ │ │ ├── DBTEAMLOGFileCopyType.h │ │ │ │ ├── DBTEAMLOGFileDeleteCommentDetails.h │ │ │ │ ├── DBTEAMLOGFileDeleteCommentType.h │ │ │ │ ├── DBTEAMLOGFileDeleteDetails.h │ │ │ │ ├── DBTEAMLOGFileDeleteType.h │ │ │ │ ├── DBTEAMLOGFileDownloadDetails.h │ │ │ │ ├── DBTEAMLOGFileDownloadType.h │ │ │ │ ├── DBTEAMLOGFileEditCommentDetails.h │ │ │ │ ├── DBTEAMLOGFileEditCommentType.h │ │ │ │ ├── DBTEAMLOGFileEditDetails.h │ │ │ │ ├── DBTEAMLOGFileEditType.h │ │ │ │ ├── DBTEAMLOGFileGetCopyReferenceDetails.h │ │ │ │ ├── DBTEAMLOGFileGetCopyReferenceType.h │ │ │ │ ├── DBTEAMLOGFileLikeCommentDetails.h │ │ │ │ ├── DBTEAMLOGFileLikeCommentType.h │ │ │ │ ├── DBTEAMLOGFileLockingLockStatusChangedDetails.h │ │ │ │ ├── DBTEAMLOGFileLockingLockStatusChangedType.h │ │ │ │ ├── DBTEAMLOGFileLockingPolicyChangedDetails.h │ │ │ │ ├── DBTEAMLOGFileLockingPolicyChangedType.h │ │ │ │ ├── DBTEAMLOGFileLogInfo.h │ │ │ │ ├── DBTEAMLOGFileMoveDetails.h │ │ │ │ ├── DBTEAMLOGFileMoveType.h │ │ │ │ ├── DBTEAMLOGFileOrFolderLogInfo.h │ │ │ │ ├── DBTEAMLOGFilePermanentlyDeleteDetails.h │ │ │ │ ├── DBTEAMLOGFilePermanentlyDeleteType.h │ │ │ │ ├── DBTEAMLOGFilePreviewDetails.h │ │ │ │ ├── DBTEAMLOGFilePreviewType.h │ │ │ │ ├── DBTEAMLOGFileProviderMigrationPolicyChangedDetails.h │ │ │ │ ├── DBTEAMLOGFileProviderMigrationPolicyChangedType.h │ │ │ │ ├── DBTEAMLOGFileRenameDetails.h │ │ │ │ ├── DBTEAMLOGFileRenameType.h │ │ │ │ ├── DBTEAMLOGFileRequestChangeDetails.h │ │ │ │ ├── DBTEAMLOGFileRequestChangeType.h │ │ │ │ ├── DBTEAMLOGFileRequestCloseDetails.h │ │ │ │ ├── DBTEAMLOGFileRequestCloseType.h │ │ │ │ ├── DBTEAMLOGFileRequestCreateDetails.h │ │ │ │ ├── DBTEAMLOGFileRequestCreateType.h │ │ │ │ ├── DBTEAMLOGFileRequestDeadline.h │ │ │ │ ├── DBTEAMLOGFileRequestDeleteDetails.h │ │ │ │ ├── DBTEAMLOGFileRequestDeleteType.h │ │ │ │ ├── DBTEAMLOGFileRequestDetails.h │ │ │ │ ├── DBTEAMLOGFileRequestReceiveFileDetails.h │ │ │ │ ├── DBTEAMLOGFileRequestReceiveFileType.h │ │ │ │ ├── DBTEAMLOGFileRequestsChangePolicyDetails.h │ │ │ │ ├── DBTEAMLOGFileRequestsChangePolicyType.h │ │ │ │ ├── DBTEAMLOGFileRequestsEmailsEnabledDetails.h │ │ │ │ ├── DBTEAMLOGFileRequestsEmailsEnabledType.h │ │ │ │ ├── DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails.h │ │ │ │ ├── DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType.h │ │ │ │ ├── DBTEAMLOGFileRequestsPolicy.h │ │ │ │ ├── DBTEAMLOGFileResolveCommentDetails.h │ │ │ │ ├── DBTEAMLOGFileResolveCommentType.h │ │ │ │ ├── DBTEAMLOGFileRestoreDetails.h │ │ │ │ ├── DBTEAMLOGFileRestoreType.h │ │ │ │ ├── DBTEAMLOGFileRevertDetails.h │ │ │ │ ├── DBTEAMLOGFileRevertType.h │ │ │ │ ├── DBTEAMLOGFileRollbackChangesDetails.h │ │ │ │ ├── DBTEAMLOGFileRollbackChangesType.h │ │ │ │ ├── DBTEAMLOGFileSaveCopyReferenceDetails.h │ │ │ │ ├── DBTEAMLOGFileSaveCopyReferenceType.h │ │ │ │ ├── DBTEAMLOGFileTransfersFileAddDetails.h │ │ │ │ ├── DBTEAMLOGFileTransfersFileAddType.h │ │ │ │ ├── DBTEAMLOGFileTransfersPolicy.h │ │ │ │ ├── DBTEAMLOGFileTransfersPolicyChangedDetails.h │ │ │ │ ├── DBTEAMLOGFileTransfersPolicyChangedType.h │ │ │ │ ├── DBTEAMLOGFileTransfersTransferDeleteDetails.h │ │ │ │ ├── DBTEAMLOGFileTransfersTransferDeleteType.h │ │ │ │ ├── DBTEAMLOGFileTransfersTransferDownloadDetails.h │ │ │ │ ├── DBTEAMLOGFileTransfersTransferDownloadType.h │ │ │ │ ├── DBTEAMLOGFileTransfersTransferSendDetails.h │ │ │ │ ├── DBTEAMLOGFileTransfersTransferSendType.h │ │ │ │ ├── DBTEAMLOGFileTransfersTransferViewDetails.h │ │ │ │ ├── DBTEAMLOGFileTransfersTransferViewType.h │ │ │ │ ├── DBTEAMLOGFileUnlikeCommentDetails.h │ │ │ │ ├── DBTEAMLOGFileUnlikeCommentType.h │ │ │ │ ├── DBTEAMLOGFileUnresolveCommentDetails.h │ │ │ │ ├── DBTEAMLOGFileUnresolveCommentType.h │ │ │ │ ├── DBTEAMLOGFolderLinkRestrictionPolicy.h │ │ │ │ ├── DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails.h │ │ │ │ ├── DBTEAMLOGFolderLinkRestrictionPolicyChangedType.h │ │ │ │ ├── DBTEAMLOGFolderLogInfo.h │ │ │ │ ├── DBTEAMLOGFolderOverviewDescriptionChangedDetails.h │ │ │ │ ├── DBTEAMLOGFolderOverviewDescriptionChangedType.h │ │ │ │ ├── DBTEAMLOGFolderOverviewItemPinnedDetails.h │ │ │ │ ├── DBTEAMLOGFolderOverviewItemPinnedType.h │ │ │ │ ├── DBTEAMLOGFolderOverviewItemUnpinnedDetails.h │ │ │ │ ├── DBTEAMLOGFolderOverviewItemUnpinnedType.h │ │ │ │ ├── DBTEAMLOGGeoLocationLogInfo.h │ │ │ │ ├── DBTEAMLOGGetTeamEventsArg.h │ │ │ │ ├── DBTEAMLOGGetTeamEventsContinueArg.h │ │ │ │ ├── DBTEAMLOGGetTeamEventsContinueError.h │ │ │ │ ├── DBTEAMLOGGetTeamEventsError.h │ │ │ │ ├── DBTEAMLOGGetTeamEventsResult.h │ │ │ │ ├── DBTEAMLOGGoogleSsoChangePolicyDetails.h │ │ │ │ ├── DBTEAMLOGGoogleSsoChangePolicyType.h │ │ │ │ ├── DBTEAMLOGGoogleSsoPolicy.h │ │ │ │ ├── DBTEAMLOGGovernancePolicyAddFolderFailedDetails.h │ │ │ │ ├── DBTEAMLOGGovernancePolicyAddFolderFailedType.h │ │ │ │ ├── DBTEAMLOGGovernancePolicyAddFoldersDetails.h │ │ │ │ ├── DBTEAMLOGGovernancePolicyAddFoldersType.h │ │ │ │ ├── DBTEAMLOGGovernancePolicyContentDisposedDetails.h │ │ │ │ ├── DBTEAMLOGGovernancePolicyContentDisposedType.h │ │ │ │ ├── DBTEAMLOGGovernancePolicyCreateDetails.h │ │ │ │ ├── DBTEAMLOGGovernancePolicyCreateType.h │ │ │ │ ├── DBTEAMLOGGovernancePolicyDeleteDetails.h │ │ │ │ ├── DBTEAMLOGGovernancePolicyDeleteType.h │ │ │ │ ├── DBTEAMLOGGovernancePolicyEditDetailsDetails.h │ │ │ │ ├── DBTEAMLOGGovernancePolicyEditDetailsType.h │ │ │ │ ├── DBTEAMLOGGovernancePolicyEditDurationDetails.h │ │ │ │ ├── DBTEAMLOGGovernancePolicyEditDurationType.h │ │ │ │ ├── DBTEAMLOGGovernancePolicyExportCreatedDetails.h │ │ │ │ ├── DBTEAMLOGGovernancePolicyExportCreatedType.h │ │ │ │ ├── DBTEAMLOGGovernancePolicyExportRemovedDetails.h │ │ │ │ ├── DBTEAMLOGGovernancePolicyExportRemovedType.h │ │ │ │ ├── DBTEAMLOGGovernancePolicyRemoveFoldersDetails.h │ │ │ │ ├── DBTEAMLOGGovernancePolicyRemoveFoldersType.h │ │ │ │ ├── DBTEAMLOGGovernancePolicyReportCreatedDetails.h │ │ │ │ ├── DBTEAMLOGGovernancePolicyReportCreatedType.h │ │ │ │ ├── DBTEAMLOGGovernancePolicyZipPartDownloadedDetails.h │ │ │ │ ├── DBTEAMLOGGovernancePolicyZipPartDownloadedType.h │ │ │ │ ├── DBTEAMLOGGroupAddExternalIdDetails.h │ │ │ │ ├── DBTEAMLOGGroupAddExternalIdType.h │ │ │ │ ├── DBTEAMLOGGroupAddMemberDetails.h │ │ │ │ ├── DBTEAMLOGGroupAddMemberType.h │ │ │ │ ├── DBTEAMLOGGroupChangeExternalIdDetails.h │ │ │ │ ├── DBTEAMLOGGroupChangeExternalIdType.h │ │ │ │ ├── DBTEAMLOGGroupChangeManagementTypeDetails.h │ │ │ │ ├── DBTEAMLOGGroupChangeManagementTypeType.h │ │ │ │ ├── DBTEAMLOGGroupChangeMemberRoleDetails.h │ │ │ │ ├── DBTEAMLOGGroupChangeMemberRoleType.h │ │ │ │ ├── DBTEAMLOGGroupCreateDetails.h │ │ │ │ ├── DBTEAMLOGGroupCreateType.h │ │ │ │ ├── DBTEAMLOGGroupDeleteDetails.h │ │ │ │ ├── DBTEAMLOGGroupDeleteType.h │ │ │ │ ├── DBTEAMLOGGroupDescriptionUpdatedDetails.h │ │ │ │ ├── DBTEAMLOGGroupDescriptionUpdatedType.h │ │ │ │ ├── DBTEAMLOGGroupJoinPolicy.h │ │ │ │ ├── DBTEAMLOGGroupJoinPolicyUpdatedDetails.h │ │ │ │ ├── DBTEAMLOGGroupJoinPolicyUpdatedType.h │ │ │ │ ├── DBTEAMLOGGroupLogInfo.h │ │ │ │ ├── DBTEAMLOGGroupMovedDetails.h │ │ │ │ ├── DBTEAMLOGGroupMovedType.h │ │ │ │ ├── DBTEAMLOGGroupRemoveExternalIdDetails.h │ │ │ │ ├── DBTEAMLOGGroupRemoveExternalIdType.h │ │ │ │ ├── DBTEAMLOGGroupRemoveMemberDetails.h │ │ │ │ ├── DBTEAMLOGGroupRemoveMemberType.h │ │ │ │ ├── DBTEAMLOGGroupRenameDetails.h │ │ │ │ ├── DBTEAMLOGGroupRenameType.h │ │ │ │ ├── DBTEAMLOGGroupUserManagementChangePolicyDetails.h │ │ │ │ ├── DBTEAMLOGGroupUserManagementChangePolicyType.h │ │ │ │ ├── DBTEAMLOGGuestAdminChangeStatusDetails.h │ │ │ │ ├── DBTEAMLOGGuestAdminChangeStatusType.h │ │ │ │ ├── DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails.h │ │ │ │ ├── DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType.h │ │ │ │ ├── DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails.h │ │ │ │ ├── DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType.h │ │ │ │ ├── DBTEAMLOGIdentifierType.h │ │ │ │ ├── DBTEAMLOGIntegrationConnectedDetails.h │ │ │ │ ├── DBTEAMLOGIntegrationConnectedType.h │ │ │ │ ├── DBTEAMLOGIntegrationDisconnectedDetails.h │ │ │ │ ├── DBTEAMLOGIntegrationDisconnectedType.h │ │ │ │ ├── DBTEAMLOGIntegrationPolicy.h │ │ │ │ ├── DBTEAMLOGIntegrationPolicyChangedDetails.h │ │ │ │ ├── DBTEAMLOGIntegrationPolicyChangedType.h │ │ │ │ ├── DBTEAMLOGInviteAcceptanceEmailPolicy.h │ │ │ │ ├── DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails.h │ │ │ │ ├── DBTEAMLOGInviteAcceptanceEmailPolicyChangedType.h │ │ │ │ ├── DBTEAMLOGInviteMethod.h │ │ │ │ ├── DBTEAMLOGJoinTeamDetails.h │ │ │ │ ├── DBTEAMLOGLabelType.h │ │ │ │ ├── DBTEAMLOGLegacyDeviceSessionLogInfo.h │ │ │ │ ├── DBTEAMLOGLegalHoldsActivateAHoldDetails.h │ │ │ │ ├── DBTEAMLOGLegalHoldsActivateAHoldType.h │ │ │ │ ├── DBTEAMLOGLegalHoldsAddMembersDetails.h │ │ │ │ ├── DBTEAMLOGLegalHoldsAddMembersType.h │ │ │ │ ├── DBTEAMLOGLegalHoldsChangeHoldDetailsDetails.h │ │ │ │ ├── DBTEAMLOGLegalHoldsChangeHoldDetailsType.h │ │ │ │ ├── DBTEAMLOGLegalHoldsChangeHoldNameDetails.h │ │ │ │ ├── DBTEAMLOGLegalHoldsChangeHoldNameType.h │ │ │ │ ├── DBTEAMLOGLegalHoldsExportAHoldDetails.h │ │ │ │ ├── DBTEAMLOGLegalHoldsExportAHoldType.h │ │ │ │ ├── DBTEAMLOGLegalHoldsExportCancelledDetails.h │ │ │ │ ├── DBTEAMLOGLegalHoldsExportCancelledType.h │ │ │ │ ├── DBTEAMLOGLegalHoldsExportDownloadedDetails.h │ │ │ │ ├── DBTEAMLOGLegalHoldsExportDownloadedType.h │ │ │ │ ├── DBTEAMLOGLegalHoldsExportRemovedDetails.h │ │ │ │ ├── DBTEAMLOGLegalHoldsExportRemovedType.h │ │ │ │ ├── DBTEAMLOGLegalHoldsReleaseAHoldDetails.h │ │ │ │ ├── DBTEAMLOGLegalHoldsReleaseAHoldType.h │ │ │ │ ├── DBTEAMLOGLegalHoldsRemoveMembersDetails.h │ │ │ │ ├── DBTEAMLOGLegalHoldsRemoveMembersType.h │ │ │ │ ├── DBTEAMLOGLegalHoldsReportAHoldDetails.h │ │ │ │ ├── DBTEAMLOGLegalHoldsReportAHoldType.h │ │ │ │ ├── DBTEAMLOGLinkedDeviceLogInfo.h │ │ │ │ ├── DBTEAMLOGLockStatus.h │ │ │ │ ├── DBTEAMLOGLoginFailDetails.h │ │ │ │ ├── DBTEAMLOGLoginFailType.h │ │ │ │ ├── DBTEAMLOGLoginMethod.h │ │ │ │ ├── DBTEAMLOGLoginSuccessDetails.h │ │ │ │ ├── DBTEAMLOGLoginSuccessType.h │ │ │ │ ├── DBTEAMLOGLogoutDetails.h │ │ │ │ ├── DBTEAMLOGLogoutType.h │ │ │ │ ├── DBTEAMLOGMemberAddExternalIdDetails.h │ │ │ │ ├── DBTEAMLOGMemberAddExternalIdType.h │ │ │ │ ├── DBTEAMLOGMemberAddNameDetails.h │ │ │ │ ├── DBTEAMLOGMemberAddNameType.h │ │ │ │ ├── DBTEAMLOGMemberChangeAdminRoleDetails.h │ │ │ │ ├── DBTEAMLOGMemberChangeAdminRoleType.h │ │ │ │ ├── DBTEAMLOGMemberChangeEmailDetails.h │ │ │ │ ├── DBTEAMLOGMemberChangeEmailType.h │ │ │ │ ├── DBTEAMLOGMemberChangeExternalIdDetails.h │ │ │ │ ├── DBTEAMLOGMemberChangeExternalIdType.h │ │ │ │ ├── DBTEAMLOGMemberChangeMembershipTypeDetails.h │ │ │ │ ├── DBTEAMLOGMemberChangeMembershipTypeType.h │ │ │ │ ├── DBTEAMLOGMemberChangeNameDetails.h │ │ │ │ ├── DBTEAMLOGMemberChangeNameType.h │ │ │ │ ├── DBTEAMLOGMemberChangeResellerRoleDetails.h │ │ │ │ ├── DBTEAMLOGMemberChangeResellerRoleType.h │ │ │ │ ├── DBTEAMLOGMemberChangeStatusDetails.h │ │ │ │ ├── DBTEAMLOGMemberChangeStatusType.h │ │ │ │ ├── DBTEAMLOGMemberDeleteManualContactsDetails.h │ │ │ │ ├── DBTEAMLOGMemberDeleteManualContactsType.h │ │ │ │ ├── DBTEAMLOGMemberDeleteProfilePhotoDetails.h │ │ │ │ ├── DBTEAMLOGMemberDeleteProfilePhotoType.h │ │ │ │ ├── DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails.h │ │ │ │ ├── DBTEAMLOGMemberPermanentlyDeleteAccountContentsType.h │ │ │ │ ├── DBTEAMLOGMemberRemoveActionType.h │ │ │ │ ├── DBTEAMLOGMemberRemoveExternalIdDetails.h │ │ │ │ ├── DBTEAMLOGMemberRemoveExternalIdType.h │ │ │ │ ├── DBTEAMLOGMemberRequestsChangePolicyDetails.h │ │ │ │ ├── DBTEAMLOGMemberRequestsChangePolicyType.h │ │ │ │ ├── DBTEAMLOGMemberRequestsPolicy.h │ │ │ │ ├── DBTEAMLOGMemberSendInvitePolicy.h │ │ │ │ ├── DBTEAMLOGMemberSendInvitePolicyChangedDetails.h │ │ │ │ ├── DBTEAMLOGMemberSendInvitePolicyChangedType.h │ │ │ │ ├── DBTEAMLOGMemberSetProfilePhotoDetails.h │ │ │ │ ├── DBTEAMLOGMemberSetProfilePhotoType.h │ │ │ │ ├── DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails.h │ │ │ │ ├── DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType.h │ │ │ │ ├── DBTEAMLOGMemberSpaceLimitsAddExceptionDetails.h │ │ │ │ ├── DBTEAMLOGMemberSpaceLimitsAddExceptionType.h │ │ │ │ ├── DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails.h │ │ │ │ ├── DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType.h │ │ │ │ ├── DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails.h │ │ │ │ ├── DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType.h │ │ │ │ ├── DBTEAMLOGMemberSpaceLimitsChangePolicyDetails.h │ │ │ │ ├── DBTEAMLOGMemberSpaceLimitsChangePolicyType.h │ │ │ │ ├── DBTEAMLOGMemberSpaceLimitsChangeStatusDetails.h │ │ │ │ ├── DBTEAMLOGMemberSpaceLimitsChangeStatusType.h │ │ │ │ ├── DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails.h │ │ │ │ ├── DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType.h │ │ │ │ ├── DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails.h │ │ │ │ ├── DBTEAMLOGMemberSpaceLimitsRemoveExceptionType.h │ │ │ │ ├── DBTEAMLOGMemberStatus.h │ │ │ │ ├── DBTEAMLOGMemberSuggestDetails.h │ │ │ │ ├── DBTEAMLOGMemberSuggestType.h │ │ │ │ ├── DBTEAMLOGMemberSuggestionsChangePolicyDetails.h │ │ │ │ ├── DBTEAMLOGMemberSuggestionsChangePolicyType.h │ │ │ │ ├── DBTEAMLOGMemberSuggestionsPolicy.h │ │ │ │ ├── DBTEAMLOGMemberTransferAccountContentsDetails.h │ │ │ │ ├── DBTEAMLOGMemberTransferAccountContentsType.h │ │ │ │ ├── DBTEAMLOGMemberTransferredInternalFields.h │ │ │ │ ├── DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails.h │ │ │ │ ├── DBTEAMLOGMicrosoftOfficeAddinChangePolicyType.h │ │ │ │ ├── DBTEAMLOGMicrosoftOfficeAddinPolicy.h │ │ │ │ ├── DBTEAMLOGMissingDetails.h │ │ │ │ ├── DBTEAMLOGMobileDeviceSessionLogInfo.h │ │ │ │ ├── DBTEAMLOGMobileSessionLogInfo.h │ │ │ │ ├── DBTEAMLOGNamespaceRelativePathLogInfo.h │ │ │ │ ├── DBTEAMLOGNetworkControlChangePolicyDetails.h │ │ │ │ ├── DBTEAMLOGNetworkControlChangePolicyType.h │ │ │ │ ├── DBTEAMLOGNetworkControlPolicy.h │ │ │ │ ├── DBTEAMLOGNoExpirationLinkGenCreateReportDetails.h │ │ │ │ ├── DBTEAMLOGNoExpirationLinkGenCreateReportType.h │ │ │ │ ├── DBTEAMLOGNoExpirationLinkGenReportFailedDetails.h │ │ │ │ ├── DBTEAMLOGNoExpirationLinkGenReportFailedType.h │ │ │ │ ├── DBTEAMLOGNoPasswordLinkGenCreateReportDetails.h │ │ │ │ ├── DBTEAMLOGNoPasswordLinkGenCreateReportType.h │ │ │ │ ├── DBTEAMLOGNoPasswordLinkGenReportFailedDetails.h │ │ │ │ ├── DBTEAMLOGNoPasswordLinkGenReportFailedType.h │ │ │ │ ├── DBTEAMLOGNoPasswordLinkViewCreateReportDetails.h │ │ │ │ ├── DBTEAMLOGNoPasswordLinkViewCreateReportType.h │ │ │ │ ├── DBTEAMLOGNoPasswordLinkViewReportFailedDetails.h │ │ │ │ ├── DBTEAMLOGNoPasswordLinkViewReportFailedType.h │ │ │ │ ├── DBTEAMLOGNonTeamMemberLogInfo.h │ │ │ │ ├── DBTEAMLOGNonTrustedTeamDetails.h │ │ │ │ ├── DBTEAMLOGNoteAclInviteOnlyDetails.h │ │ │ │ ├── DBTEAMLOGNoteAclInviteOnlyType.h │ │ │ │ ├── DBTEAMLOGNoteAclLinkDetails.h │ │ │ │ ├── DBTEAMLOGNoteAclLinkType.h │ │ │ │ ├── DBTEAMLOGNoteAclTeamLinkDetails.h │ │ │ │ ├── DBTEAMLOGNoteAclTeamLinkType.h │ │ │ │ ├── DBTEAMLOGNoteShareReceiveDetails.h │ │ │ │ ├── DBTEAMLOGNoteShareReceiveType.h │ │ │ │ ├── DBTEAMLOGNoteSharedDetails.h │ │ │ │ ├── DBTEAMLOGNoteSharedType.h │ │ │ │ ├── DBTEAMLOGObjectLabelAddedDetails.h │ │ │ │ ├── DBTEAMLOGObjectLabelAddedType.h │ │ │ │ ├── DBTEAMLOGObjectLabelRemovedDetails.h │ │ │ │ ├── DBTEAMLOGObjectLabelRemovedType.h │ │ │ │ ├── DBTEAMLOGObjectLabelUpdatedValueDetails.h │ │ │ │ ├── DBTEAMLOGObjectLabelUpdatedValueType.h │ │ │ │ ├── DBTEAMLOGOpenNoteSharedDetails.h │ │ │ │ ├── DBTEAMLOGOpenNoteSharedType.h │ │ │ │ ├── DBTEAMLOGOrganizationDetails.h │ │ │ │ ├── DBTEAMLOGOrganizationName.h │ │ │ │ ├── DBTEAMLOGOrganizeFolderWithTidyDetails.h │ │ │ │ ├── DBTEAMLOGOrganizeFolderWithTidyType.h │ │ │ │ ├── DBTEAMLOGOriginLogInfo.h │ │ │ │ ├── DBTEAMLOGOutdatedLinkViewCreateReportDetails.h │ │ │ │ ├── DBTEAMLOGOutdatedLinkViewCreateReportType.h │ │ │ │ ├── DBTEAMLOGOutdatedLinkViewReportFailedDetails.h │ │ │ │ ├── DBTEAMLOGOutdatedLinkViewReportFailedType.h │ │ │ │ ├── DBTEAMLOGPaperAccessType.h │ │ │ │ ├── DBTEAMLOGPaperAdminExportStartDetails.h │ │ │ │ ├── DBTEAMLOGPaperAdminExportStartType.h │ │ │ │ ├── DBTEAMLOGPaperChangeDeploymentPolicyDetails.h │ │ │ │ ├── DBTEAMLOGPaperChangeDeploymentPolicyType.h │ │ │ │ ├── DBTEAMLOGPaperChangeMemberLinkPolicyDetails.h │ │ │ │ ├── DBTEAMLOGPaperChangeMemberLinkPolicyType.h │ │ │ │ ├── DBTEAMLOGPaperChangeMemberPolicyDetails.h │ │ │ │ ├── DBTEAMLOGPaperChangeMemberPolicyType.h │ │ │ │ ├── DBTEAMLOGPaperChangePolicyDetails.h │ │ │ │ ├── DBTEAMLOGPaperChangePolicyType.h │ │ │ │ ├── DBTEAMLOGPaperContentAddMemberDetails.h │ │ │ │ ├── DBTEAMLOGPaperContentAddMemberType.h │ │ │ │ ├── DBTEAMLOGPaperContentAddToFolderDetails.h │ │ │ │ ├── DBTEAMLOGPaperContentAddToFolderType.h │ │ │ │ ├── DBTEAMLOGPaperContentArchiveDetails.h │ │ │ │ ├── DBTEAMLOGPaperContentArchiveType.h │ │ │ │ ├── DBTEAMLOGPaperContentCreateDetails.h │ │ │ │ ├── DBTEAMLOGPaperContentCreateType.h │ │ │ │ ├── DBTEAMLOGPaperContentPermanentlyDeleteDetails.h │ │ │ │ ├── DBTEAMLOGPaperContentPermanentlyDeleteType.h │ │ │ │ ├── DBTEAMLOGPaperContentRemoveFromFolderDetails.h │ │ │ │ ├── DBTEAMLOGPaperContentRemoveFromFolderType.h │ │ │ │ ├── DBTEAMLOGPaperContentRemoveMemberDetails.h │ │ │ │ ├── DBTEAMLOGPaperContentRemoveMemberType.h │ │ │ │ ├── DBTEAMLOGPaperContentRenameDetails.h │ │ │ │ ├── DBTEAMLOGPaperContentRenameType.h │ │ │ │ ├── DBTEAMLOGPaperContentRestoreDetails.h │ │ │ │ ├── DBTEAMLOGPaperContentRestoreType.h │ │ │ │ ├── DBTEAMLOGPaperDefaultFolderPolicy.h │ │ │ │ ├── DBTEAMLOGPaperDefaultFolderPolicyChangedDetails.h │ │ │ │ ├── DBTEAMLOGPaperDefaultFolderPolicyChangedType.h │ │ │ │ ├── DBTEAMLOGPaperDesktopPolicy.h │ │ │ │ ├── DBTEAMLOGPaperDesktopPolicyChangedDetails.h │ │ │ │ ├── DBTEAMLOGPaperDesktopPolicyChangedType.h │ │ │ │ ├── DBTEAMLOGPaperDocAddCommentDetails.h │ │ │ │ ├── DBTEAMLOGPaperDocAddCommentType.h │ │ │ │ ├── DBTEAMLOGPaperDocChangeMemberRoleDetails.h │ │ │ │ ├── DBTEAMLOGPaperDocChangeMemberRoleType.h │ │ │ │ ├── DBTEAMLOGPaperDocChangeSharingPolicyDetails.h │ │ │ │ ├── DBTEAMLOGPaperDocChangeSharingPolicyType.h │ │ │ │ ├── DBTEAMLOGPaperDocChangeSubscriptionDetails.h │ │ │ │ ├── DBTEAMLOGPaperDocChangeSubscriptionType.h │ │ │ │ ├── DBTEAMLOGPaperDocDeleteCommentDetails.h │ │ │ │ ├── DBTEAMLOGPaperDocDeleteCommentType.h │ │ │ │ ├── DBTEAMLOGPaperDocDeletedDetails.h │ │ │ │ ├── DBTEAMLOGPaperDocDeletedType.h │ │ │ │ ├── DBTEAMLOGPaperDocDownloadDetails.h │ │ │ │ ├── DBTEAMLOGPaperDocDownloadType.h │ │ │ │ ├── DBTEAMLOGPaperDocEditCommentDetails.h │ │ │ │ ├── DBTEAMLOGPaperDocEditCommentType.h │ │ │ │ ├── DBTEAMLOGPaperDocEditDetails.h │ │ │ │ ├── DBTEAMLOGPaperDocEditType.h │ │ │ │ ├── DBTEAMLOGPaperDocFollowedDetails.h │ │ │ │ ├── DBTEAMLOGPaperDocFollowedType.h │ │ │ │ ├── DBTEAMLOGPaperDocMentionDetails.h │ │ │ │ ├── DBTEAMLOGPaperDocMentionType.h │ │ │ │ ├── DBTEAMLOGPaperDocOwnershipChangedDetails.h │ │ │ │ ├── DBTEAMLOGPaperDocOwnershipChangedType.h │ │ │ │ ├── DBTEAMLOGPaperDocRequestAccessDetails.h │ │ │ │ ├── DBTEAMLOGPaperDocRequestAccessType.h │ │ │ │ ├── DBTEAMLOGPaperDocResolveCommentDetails.h │ │ │ │ ├── DBTEAMLOGPaperDocResolveCommentType.h │ │ │ │ ├── DBTEAMLOGPaperDocRevertDetails.h │ │ │ │ ├── DBTEAMLOGPaperDocRevertType.h │ │ │ │ ├── DBTEAMLOGPaperDocSlackShareDetails.h │ │ │ │ ├── DBTEAMLOGPaperDocSlackShareType.h │ │ │ │ ├── DBTEAMLOGPaperDocTeamInviteDetails.h │ │ │ │ ├── DBTEAMLOGPaperDocTeamInviteType.h │ │ │ │ ├── DBTEAMLOGPaperDocTrashedDetails.h │ │ │ │ ├── DBTEAMLOGPaperDocTrashedType.h │ │ │ │ ├── DBTEAMLOGPaperDocUnresolveCommentDetails.h │ │ │ │ ├── DBTEAMLOGPaperDocUnresolveCommentType.h │ │ │ │ ├── DBTEAMLOGPaperDocUntrashedDetails.h │ │ │ │ ├── DBTEAMLOGPaperDocUntrashedType.h │ │ │ │ ├── DBTEAMLOGPaperDocViewDetails.h │ │ │ │ ├── DBTEAMLOGPaperDocViewType.h │ │ │ │ ├── DBTEAMLOGPaperDocumentLogInfo.h │ │ │ │ ├── DBTEAMLOGPaperDownloadFormat.h │ │ │ │ ├── DBTEAMLOGPaperEnabledUsersGroupAdditionDetails.h │ │ │ │ ├── DBTEAMLOGPaperEnabledUsersGroupAdditionType.h │ │ │ │ ├── DBTEAMLOGPaperEnabledUsersGroupRemovalDetails.h │ │ │ │ ├── DBTEAMLOGPaperEnabledUsersGroupRemovalType.h │ │ │ │ ├── DBTEAMLOGPaperExternalViewAllowDetails.h │ │ │ │ ├── DBTEAMLOGPaperExternalViewAllowType.h │ │ │ │ ├── DBTEAMLOGPaperExternalViewDefaultTeamDetails.h │ │ │ │ ├── DBTEAMLOGPaperExternalViewDefaultTeamType.h │ │ │ │ ├── DBTEAMLOGPaperExternalViewForbidDetails.h │ │ │ │ ├── DBTEAMLOGPaperExternalViewForbidType.h │ │ │ │ ├── DBTEAMLOGPaperFolderChangeSubscriptionDetails.h │ │ │ │ ├── DBTEAMLOGPaperFolderChangeSubscriptionType.h │ │ │ │ ├── DBTEAMLOGPaperFolderDeletedDetails.h │ │ │ │ ├── DBTEAMLOGPaperFolderDeletedType.h │ │ │ │ ├── DBTEAMLOGPaperFolderFollowedDetails.h │ │ │ │ ├── DBTEAMLOGPaperFolderFollowedType.h │ │ │ │ ├── DBTEAMLOGPaperFolderLogInfo.h │ │ │ │ ├── DBTEAMLOGPaperFolderTeamInviteDetails.h │ │ │ │ ├── DBTEAMLOGPaperFolderTeamInviteType.h │ │ │ │ ├── DBTEAMLOGPaperMemberPolicy.h │ │ │ │ ├── DBTEAMLOGPaperPublishedLinkChangePermissionDetails.h │ │ │ │ ├── DBTEAMLOGPaperPublishedLinkChangePermissionType.h │ │ │ │ ├── DBTEAMLOGPaperPublishedLinkCreateDetails.h │ │ │ │ ├── DBTEAMLOGPaperPublishedLinkCreateType.h │ │ │ │ ├── DBTEAMLOGPaperPublishedLinkDisabledDetails.h │ │ │ │ ├── DBTEAMLOGPaperPublishedLinkDisabledType.h │ │ │ │ ├── DBTEAMLOGPaperPublishedLinkViewDetails.h │ │ │ │ ├── DBTEAMLOGPaperPublishedLinkViewType.h │ │ │ │ ├── DBTEAMLOGParticipantLogInfo.h │ │ │ │ ├── DBTEAMLOGPassPolicy.h │ │ │ │ ├── DBTEAMLOGPasswordChangeDetails.h │ │ │ │ ├── DBTEAMLOGPasswordChangeType.h │ │ │ │ ├── DBTEAMLOGPasswordResetAllDetails.h │ │ │ │ ├── DBTEAMLOGPasswordResetAllType.h │ │ │ │ ├── DBTEAMLOGPasswordResetDetails.h │ │ │ │ ├── DBTEAMLOGPasswordResetType.h │ │ │ │ ├── DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails.h │ │ │ │ ├── DBTEAMLOGPasswordStrengthRequirementsChangePolicyType.h │ │ │ │ ├── DBTEAMLOGPathLogInfo.h │ │ │ │ ├── DBTEAMLOGPendingSecondaryEmailAddedDetails.h │ │ │ │ ├── DBTEAMLOGPendingSecondaryEmailAddedType.h │ │ │ │ ├── DBTEAMLOGPermanentDeleteChangePolicyDetails.h │ │ │ │ ├── DBTEAMLOGPermanentDeleteChangePolicyType.h │ │ │ │ ├── DBTEAMLOGPlacementRestriction.h │ │ │ │ ├── DBTEAMLOGPolicyType.h │ │ │ │ ├── DBTEAMLOGPrimaryTeamRequestAcceptedDetails.h │ │ │ │ ├── DBTEAMLOGPrimaryTeamRequestCanceledDetails.h │ │ │ │ ├── DBTEAMLOGPrimaryTeamRequestExpiredDetails.h │ │ │ │ ├── DBTEAMLOGPrimaryTeamRequestReminderDetails.h │ │ │ │ ├── DBTEAMLOGQuickActionType.h │ │ │ │ ├── DBTEAMLOGRansomwareAlertCreateReportDetails.h │ │ │ │ ├── DBTEAMLOGRansomwareAlertCreateReportFailedDetails.h │ │ │ │ ├── DBTEAMLOGRansomwareAlertCreateReportFailedType.h │ │ │ │ ├── DBTEAMLOGRansomwareAlertCreateReportType.h │ │ │ │ ├── DBTEAMLOGRansomwareRestoreProcessCompletedDetails.h │ │ │ │ ├── DBTEAMLOGRansomwareRestoreProcessCompletedType.h │ │ │ │ ├── DBTEAMLOGRansomwareRestoreProcessStartedDetails.h │ │ │ │ ├── DBTEAMLOGRansomwareRestoreProcessStartedType.h │ │ │ │ ├── DBTEAMLOGRecipientsConfiguration.h │ │ │ │ ├── DBTEAMLOGRelocateAssetReferencesLogInfo.h │ │ │ │ ├── DBTEAMLOGReplayFileDeleteDetails.h │ │ │ │ ├── DBTEAMLOGReplayFileDeleteType.h │ │ │ │ ├── DBTEAMLOGReplayFileSharedLinkCreatedDetails.h │ │ │ │ ├── DBTEAMLOGReplayFileSharedLinkCreatedType.h │ │ │ │ ├── DBTEAMLOGReplayFileSharedLinkModifiedDetails.h │ │ │ │ ├── DBTEAMLOGReplayFileSharedLinkModifiedType.h │ │ │ │ ├── DBTEAMLOGReplayProjectTeamAddDetails.h │ │ │ │ ├── DBTEAMLOGReplayProjectTeamAddType.h │ │ │ │ ├── DBTEAMLOGReplayProjectTeamDeleteDetails.h │ │ │ │ ├── DBTEAMLOGReplayProjectTeamDeleteType.h │ │ │ │ ├── DBTEAMLOGResellerLogInfo.h │ │ │ │ ├── DBTEAMLOGResellerRole.h │ │ │ │ ├── DBTEAMLOGResellerSupportChangePolicyDetails.h │ │ │ │ ├── DBTEAMLOGResellerSupportChangePolicyType.h │ │ │ │ ├── DBTEAMLOGResellerSupportPolicy.h │ │ │ │ ├── DBTEAMLOGResellerSupportSessionEndDetails.h │ │ │ │ ├── DBTEAMLOGResellerSupportSessionEndType.h │ │ │ │ ├── DBTEAMLOGResellerSupportSessionStartDetails.h │ │ │ │ ├── DBTEAMLOGResellerSupportSessionStartType.h │ │ │ │ ├── DBTEAMLOGRewindFolderDetails.h │ │ │ │ ├── DBTEAMLOGRewindFolderType.h │ │ │ │ ├── DBTEAMLOGRewindPolicy.h │ │ │ │ ├── DBTEAMLOGRewindPolicyChangedDetails.h │ │ │ │ ├── DBTEAMLOGRewindPolicyChangedType.h │ │ │ │ ├── DBTEAMLOGSecondaryEmailDeletedDetails.h │ │ │ │ ├── DBTEAMLOGSecondaryEmailDeletedType.h │ │ │ │ ├── DBTEAMLOGSecondaryEmailVerifiedDetails.h │ │ │ │ ├── DBTEAMLOGSecondaryEmailVerifiedType.h │ │ │ │ ├── DBTEAMLOGSecondaryMailsPolicy.h │ │ │ │ ├── DBTEAMLOGSecondaryMailsPolicyChangedDetails.h │ │ │ │ ├── DBTEAMLOGSecondaryMailsPolicyChangedType.h │ │ │ │ ├── DBTEAMLOGSecondaryTeamRequestAcceptedDetails.h │ │ │ │ ├── DBTEAMLOGSecondaryTeamRequestCanceledDetails.h │ │ │ │ ├── DBTEAMLOGSecondaryTeamRequestExpiredDetails.h │ │ │ │ ├── DBTEAMLOGSecondaryTeamRequestReminderDetails.h │ │ │ │ ├── DBTEAMLOGSendForSignaturePolicy.h │ │ │ │ ├── DBTEAMLOGSendForSignaturePolicyChangedDetails.h │ │ │ │ ├── DBTEAMLOGSendForSignaturePolicyChangedType.h │ │ │ │ ├── DBTEAMLOGSessionLogInfo.h │ │ │ │ ├── DBTEAMLOGSfAddGroupDetails.h │ │ │ │ ├── DBTEAMLOGSfAddGroupType.h │ │ │ │ ├── DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails.h │ │ │ │ ├── DBTEAMLOGSfAllowNonMembersToViewSharedLinksType.h │ │ │ │ ├── DBTEAMLOGSfExternalInviteWarnDetails.h │ │ │ │ ├── DBTEAMLOGSfExternalInviteWarnType.h │ │ │ │ ├── DBTEAMLOGSfFbInviteChangeRoleDetails.h │ │ │ │ ├── DBTEAMLOGSfFbInviteChangeRoleType.h │ │ │ │ ├── DBTEAMLOGSfFbInviteDetails.h │ │ │ │ ├── DBTEAMLOGSfFbInviteType.h │ │ │ │ ├── DBTEAMLOGSfFbUninviteDetails.h │ │ │ │ ├── DBTEAMLOGSfFbUninviteType.h │ │ │ │ ├── DBTEAMLOGSfInviteGroupDetails.h │ │ │ │ ├── DBTEAMLOGSfInviteGroupType.h │ │ │ │ ├── DBTEAMLOGSfTeamGrantAccessDetails.h │ │ │ │ ├── DBTEAMLOGSfTeamGrantAccessType.h │ │ │ │ ├── DBTEAMLOGSfTeamInviteChangeRoleDetails.h │ │ │ │ ├── DBTEAMLOGSfTeamInviteChangeRoleType.h │ │ │ │ ├── DBTEAMLOGSfTeamInviteDetails.h │ │ │ │ ├── DBTEAMLOGSfTeamInviteType.h │ │ │ │ ├── DBTEAMLOGSfTeamJoinDetails.h │ │ │ │ ├── DBTEAMLOGSfTeamJoinFromOobLinkDetails.h │ │ │ │ ├── DBTEAMLOGSfTeamJoinFromOobLinkType.h │ │ │ │ ├── DBTEAMLOGSfTeamJoinType.h │ │ │ │ ├── DBTEAMLOGSfTeamUninviteDetails.h │ │ │ │ ├── DBTEAMLOGSfTeamUninviteType.h │ │ │ │ ├── DBTEAMLOGSharedContentAddInviteesDetails.h │ │ │ │ ├── DBTEAMLOGSharedContentAddInviteesType.h │ │ │ │ ├── DBTEAMLOGSharedContentAddLinkExpiryDetails.h │ │ │ │ ├── DBTEAMLOGSharedContentAddLinkExpiryType.h │ │ │ │ ├── DBTEAMLOGSharedContentAddLinkPasswordDetails.h │ │ │ │ ├── DBTEAMLOGSharedContentAddLinkPasswordType.h │ │ │ │ ├── DBTEAMLOGSharedContentAddMemberDetails.h │ │ │ │ ├── DBTEAMLOGSharedContentAddMemberType.h │ │ │ │ ├── DBTEAMLOGSharedContentChangeDownloadsPolicyDetails.h │ │ │ │ ├── DBTEAMLOGSharedContentChangeDownloadsPolicyType.h │ │ │ │ ├── DBTEAMLOGSharedContentChangeInviteeRoleDetails.h │ │ │ │ ├── DBTEAMLOGSharedContentChangeInviteeRoleType.h │ │ │ │ ├── DBTEAMLOGSharedContentChangeLinkAudienceDetails.h │ │ │ │ ├── DBTEAMLOGSharedContentChangeLinkAudienceType.h │ │ │ │ ├── DBTEAMLOGSharedContentChangeLinkExpiryDetails.h │ │ │ │ ├── DBTEAMLOGSharedContentChangeLinkExpiryType.h │ │ │ │ ├── DBTEAMLOGSharedContentChangeLinkPasswordDetails.h │ │ │ │ ├── DBTEAMLOGSharedContentChangeLinkPasswordType.h │ │ │ │ ├── DBTEAMLOGSharedContentChangeMemberRoleDetails.h │ │ │ │ ├── DBTEAMLOGSharedContentChangeMemberRoleType.h │ │ │ │ ├── DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails.h │ │ │ │ ├── DBTEAMLOGSharedContentChangeViewerInfoPolicyType.h │ │ │ │ ├── DBTEAMLOGSharedContentClaimInvitationDetails.h │ │ │ │ ├── DBTEAMLOGSharedContentClaimInvitationType.h │ │ │ │ ├── DBTEAMLOGSharedContentCopyDetails.h │ │ │ │ ├── DBTEAMLOGSharedContentCopyType.h │ │ │ │ ├── DBTEAMLOGSharedContentDownloadDetails.h │ │ │ │ ├── DBTEAMLOGSharedContentDownloadType.h │ │ │ │ ├── DBTEAMLOGSharedContentRelinquishMembershipDetails.h │ │ │ │ ├── DBTEAMLOGSharedContentRelinquishMembershipType.h │ │ │ │ ├── DBTEAMLOGSharedContentRemoveInviteesDetails.h │ │ │ │ ├── DBTEAMLOGSharedContentRemoveInviteesType.h │ │ │ │ ├── DBTEAMLOGSharedContentRemoveLinkExpiryDetails.h │ │ │ │ ├── DBTEAMLOGSharedContentRemoveLinkExpiryType.h │ │ │ │ ├── DBTEAMLOGSharedContentRemoveLinkPasswordDetails.h │ │ │ │ ├── DBTEAMLOGSharedContentRemoveLinkPasswordType.h │ │ │ │ ├── DBTEAMLOGSharedContentRemoveMemberDetails.h │ │ │ │ ├── DBTEAMLOGSharedContentRemoveMemberType.h │ │ │ │ ├── DBTEAMLOGSharedContentRequestAccessDetails.h │ │ │ │ ├── DBTEAMLOGSharedContentRequestAccessType.h │ │ │ │ ├── DBTEAMLOGSharedContentRestoreInviteesDetails.h │ │ │ │ ├── DBTEAMLOGSharedContentRestoreInviteesType.h │ │ │ │ ├── DBTEAMLOGSharedContentRestoreMemberDetails.h │ │ │ │ ├── DBTEAMLOGSharedContentRestoreMemberType.h │ │ │ │ ├── DBTEAMLOGSharedContentUnshareDetails.h │ │ │ │ ├── DBTEAMLOGSharedContentUnshareType.h │ │ │ │ ├── DBTEAMLOGSharedContentViewDetails.h │ │ │ │ ├── DBTEAMLOGSharedContentViewType.h │ │ │ │ ├── DBTEAMLOGSharedFolderChangeLinkPolicyDetails.h │ │ │ │ ├── DBTEAMLOGSharedFolderChangeLinkPolicyType.h │ │ │ │ ├── DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails.h │ │ │ │ ├── DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType.h │ │ │ │ ├── DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails.h │ │ │ │ ├── DBTEAMLOGSharedFolderChangeMembersManagementPolicyType.h │ │ │ │ ├── DBTEAMLOGSharedFolderChangeMembersPolicyDetails.h │ │ │ │ ├── DBTEAMLOGSharedFolderChangeMembersPolicyType.h │ │ │ │ ├── DBTEAMLOGSharedFolderCreateDetails.h │ │ │ │ ├── DBTEAMLOGSharedFolderCreateType.h │ │ │ │ ├── DBTEAMLOGSharedFolderDeclineInvitationDetails.h │ │ │ │ ├── DBTEAMLOGSharedFolderDeclineInvitationType.h │ │ │ │ ├── DBTEAMLOGSharedFolderMembersInheritancePolicy.h │ │ │ │ ├── DBTEAMLOGSharedFolderMountDetails.h │ │ │ │ ├── DBTEAMLOGSharedFolderMountType.h │ │ │ │ ├── DBTEAMLOGSharedFolderNestDetails.h │ │ │ │ ├── DBTEAMLOGSharedFolderNestType.h │ │ │ │ ├── DBTEAMLOGSharedFolderTransferOwnershipDetails.h │ │ │ │ ├── DBTEAMLOGSharedFolderTransferOwnershipType.h │ │ │ │ ├── DBTEAMLOGSharedFolderUnmountDetails.h │ │ │ │ ├── DBTEAMLOGSharedFolderUnmountType.h │ │ │ │ ├── DBTEAMLOGSharedLinkAccessLevel.h │ │ │ │ ├── DBTEAMLOGSharedLinkAddExpiryDetails.h │ │ │ │ ├── DBTEAMLOGSharedLinkAddExpiryType.h │ │ │ │ ├── DBTEAMLOGSharedLinkChangeExpiryDetails.h │ │ │ │ ├── DBTEAMLOGSharedLinkChangeExpiryType.h │ │ │ │ ├── DBTEAMLOGSharedLinkChangeVisibilityDetails.h │ │ │ │ ├── DBTEAMLOGSharedLinkChangeVisibilityType.h │ │ │ │ ├── DBTEAMLOGSharedLinkCopyDetails.h │ │ │ │ ├── DBTEAMLOGSharedLinkCopyType.h │ │ │ │ ├── DBTEAMLOGSharedLinkCreateDetails.h │ │ │ │ ├── DBTEAMLOGSharedLinkCreateType.h │ │ │ │ ├── DBTEAMLOGSharedLinkDisableDetails.h │ │ │ │ ├── DBTEAMLOGSharedLinkDisableType.h │ │ │ │ ├── DBTEAMLOGSharedLinkDownloadDetails.h │ │ │ │ ├── DBTEAMLOGSharedLinkDownloadType.h │ │ │ │ ├── DBTEAMLOGSharedLinkRemoveExpiryDetails.h │ │ │ │ ├── DBTEAMLOGSharedLinkRemoveExpiryType.h │ │ │ │ ├── DBTEAMLOGSharedLinkSettingsAddExpirationDetails.h │ │ │ │ ├── DBTEAMLOGSharedLinkSettingsAddExpirationType.h │ │ │ │ ├── DBTEAMLOGSharedLinkSettingsAddPasswordDetails.h │ │ │ │ ├── DBTEAMLOGSharedLinkSettingsAddPasswordType.h │ │ │ │ ├── DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails.h │ │ │ │ ├── DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType.h │ │ │ │ ├── DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails.h │ │ │ │ ├── DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType.h │ │ │ │ ├── DBTEAMLOGSharedLinkSettingsChangeAudienceDetails.h │ │ │ │ ├── DBTEAMLOGSharedLinkSettingsChangeAudienceType.h │ │ │ │ ├── DBTEAMLOGSharedLinkSettingsChangeExpirationDetails.h │ │ │ │ ├── DBTEAMLOGSharedLinkSettingsChangeExpirationType.h │ │ │ │ ├── DBTEAMLOGSharedLinkSettingsChangePasswordDetails.h │ │ │ │ ├── DBTEAMLOGSharedLinkSettingsChangePasswordType.h │ │ │ │ ├── DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails.h │ │ │ │ ├── DBTEAMLOGSharedLinkSettingsRemoveExpirationType.h │ │ │ │ ├── DBTEAMLOGSharedLinkSettingsRemovePasswordDetails.h │ │ │ │ ├── DBTEAMLOGSharedLinkSettingsRemovePasswordType.h │ │ │ │ ├── DBTEAMLOGSharedLinkShareDetails.h │ │ │ │ ├── DBTEAMLOGSharedLinkShareType.h │ │ │ │ ├── DBTEAMLOGSharedLinkViewDetails.h │ │ │ │ ├── DBTEAMLOGSharedLinkViewType.h │ │ │ │ ├── DBTEAMLOGSharedLinkVisibility.h │ │ │ │ ├── DBTEAMLOGSharedNoteOpenedDetails.h │ │ │ │ ├── DBTEAMLOGSharedNoteOpenedType.h │ │ │ │ ├── DBTEAMLOGSharingChangeFolderJoinPolicyDetails.h │ │ │ │ ├── DBTEAMLOGSharingChangeFolderJoinPolicyType.h │ │ │ │ ├── DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails.h │ │ │ │ ├── DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType.h │ │ │ │ ├── DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails.h │ │ │ │ ├── DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType.h │ │ │ │ ├── DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails.h │ │ │ │ ├── DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType.h │ │ │ │ ├── DBTEAMLOGSharingChangeLinkPolicyDetails.h │ │ │ │ ├── DBTEAMLOGSharingChangeLinkPolicyType.h │ │ │ │ ├── DBTEAMLOGSharingChangeMemberPolicyDetails.h │ │ │ │ ├── DBTEAMLOGSharingChangeMemberPolicyType.h │ │ │ │ ├── DBTEAMLOGSharingFolderJoinPolicy.h │ │ │ │ ├── DBTEAMLOGSharingLinkPolicy.h │ │ │ │ ├── DBTEAMLOGSharingMemberPolicy.h │ │ │ │ ├── DBTEAMLOGShmodelDisableDownloadsDetails.h │ │ │ │ ├── DBTEAMLOGShmodelDisableDownloadsType.h │ │ │ │ ├── DBTEAMLOGShmodelEnableDownloadsDetails.h │ │ │ │ ├── DBTEAMLOGShmodelEnableDownloadsType.h │ │ │ │ ├── DBTEAMLOGShmodelGroupShareDetails.h │ │ │ │ ├── DBTEAMLOGShmodelGroupShareType.h │ │ │ │ ├── DBTEAMLOGShowcaseAccessGrantedDetails.h │ │ │ │ ├── DBTEAMLOGShowcaseAccessGrantedType.h │ │ │ │ ├── DBTEAMLOGShowcaseAddMemberDetails.h │ │ │ │ ├── DBTEAMLOGShowcaseAddMemberType.h │ │ │ │ ├── DBTEAMLOGShowcaseArchivedDetails.h │ │ │ │ ├── DBTEAMLOGShowcaseArchivedType.h │ │ │ │ ├── DBTEAMLOGShowcaseChangeDownloadPolicyDetails.h │ │ │ │ ├── DBTEAMLOGShowcaseChangeDownloadPolicyType.h │ │ │ │ ├── DBTEAMLOGShowcaseChangeEnabledPolicyDetails.h │ │ │ │ ├── DBTEAMLOGShowcaseChangeEnabledPolicyType.h │ │ │ │ ├── DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails.h │ │ │ │ ├── DBTEAMLOGShowcaseChangeExternalSharingPolicyType.h │ │ │ │ ├── DBTEAMLOGShowcaseCreatedDetails.h │ │ │ │ ├── DBTEAMLOGShowcaseCreatedType.h │ │ │ │ ├── DBTEAMLOGShowcaseDeleteCommentDetails.h │ │ │ │ ├── DBTEAMLOGShowcaseDeleteCommentType.h │ │ │ │ ├── DBTEAMLOGShowcaseDocumentLogInfo.h │ │ │ │ ├── DBTEAMLOGShowcaseDownloadPolicy.h │ │ │ │ ├── DBTEAMLOGShowcaseEditCommentDetails.h │ │ │ │ ├── DBTEAMLOGShowcaseEditCommentType.h │ │ │ │ ├── DBTEAMLOGShowcaseEditedDetails.h │ │ │ │ ├── DBTEAMLOGShowcaseEditedType.h │ │ │ │ ├── DBTEAMLOGShowcaseEnabledPolicy.h │ │ │ │ ├── DBTEAMLOGShowcaseExternalSharingPolicy.h │ │ │ │ ├── DBTEAMLOGShowcaseFileAddedDetails.h │ │ │ │ ├── DBTEAMLOGShowcaseFileAddedType.h │ │ │ │ ├── DBTEAMLOGShowcaseFileDownloadDetails.h │ │ │ │ ├── DBTEAMLOGShowcaseFileDownloadType.h │ │ │ │ ├── DBTEAMLOGShowcaseFileRemovedDetails.h │ │ │ │ ├── DBTEAMLOGShowcaseFileRemovedType.h │ │ │ │ ├── DBTEAMLOGShowcaseFileViewDetails.h │ │ │ │ ├── DBTEAMLOGShowcaseFileViewType.h │ │ │ │ ├── DBTEAMLOGShowcasePermanentlyDeletedDetails.h │ │ │ │ ├── DBTEAMLOGShowcasePermanentlyDeletedType.h │ │ │ │ ├── DBTEAMLOGShowcasePostCommentDetails.h │ │ │ │ ├── DBTEAMLOGShowcasePostCommentType.h │ │ │ │ ├── DBTEAMLOGShowcaseRemoveMemberDetails.h │ │ │ │ ├── DBTEAMLOGShowcaseRemoveMemberType.h │ │ │ │ ├── DBTEAMLOGShowcaseRenamedDetails.h │ │ │ │ ├── DBTEAMLOGShowcaseRenamedType.h │ │ │ │ ├── DBTEAMLOGShowcaseRequestAccessDetails.h │ │ │ │ ├── DBTEAMLOGShowcaseRequestAccessType.h │ │ │ │ ├── DBTEAMLOGShowcaseResolveCommentDetails.h │ │ │ │ ├── DBTEAMLOGShowcaseResolveCommentType.h │ │ │ │ ├── DBTEAMLOGShowcaseRestoredDetails.h │ │ │ │ ├── DBTEAMLOGShowcaseRestoredType.h │ │ │ │ ├── DBTEAMLOGShowcaseTrashedDeprecatedDetails.h │ │ │ │ ├── DBTEAMLOGShowcaseTrashedDeprecatedType.h │ │ │ │ ├── DBTEAMLOGShowcaseTrashedDetails.h │ │ │ │ ├── DBTEAMLOGShowcaseTrashedType.h │ │ │ │ ├── DBTEAMLOGShowcaseUnresolveCommentDetails.h │ │ │ │ ├── DBTEAMLOGShowcaseUnresolveCommentType.h │ │ │ │ ├── DBTEAMLOGShowcaseUntrashedDeprecatedDetails.h │ │ │ │ ├── DBTEAMLOGShowcaseUntrashedDeprecatedType.h │ │ │ │ ├── DBTEAMLOGShowcaseUntrashedDetails.h │ │ │ │ ├── DBTEAMLOGShowcaseUntrashedType.h │ │ │ │ ├── DBTEAMLOGShowcaseViewDetails.h │ │ │ │ ├── DBTEAMLOGShowcaseViewType.h │ │ │ │ ├── DBTEAMLOGSignInAsSessionEndDetails.h │ │ │ │ ├── DBTEAMLOGSignInAsSessionEndType.h │ │ │ │ ├── DBTEAMLOGSignInAsSessionStartDetails.h │ │ │ │ ├── DBTEAMLOGSignInAsSessionStartType.h │ │ │ │ ├── DBTEAMLOGSmartSyncChangePolicyDetails.h │ │ │ │ ├── DBTEAMLOGSmartSyncChangePolicyType.h │ │ │ │ ├── DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails.h │ │ │ │ ├── DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType.h │ │ │ │ ├── DBTEAMLOGSmartSyncNotOptOutDetails.h │ │ │ │ ├── DBTEAMLOGSmartSyncNotOptOutType.h │ │ │ │ ├── DBTEAMLOGSmartSyncOptOutDetails.h │ │ │ │ ├── DBTEAMLOGSmartSyncOptOutPolicy.h │ │ │ │ ├── DBTEAMLOGSmartSyncOptOutType.h │ │ │ │ ├── DBTEAMLOGSmarterSmartSyncPolicyChangedDetails.h │ │ │ │ ├── DBTEAMLOGSmarterSmartSyncPolicyChangedType.h │ │ │ │ ├── DBTEAMLOGSpaceCapsType.h │ │ │ │ ├── DBTEAMLOGSpaceLimitsStatus.h │ │ │ │ ├── DBTEAMLOGSsoAddCertDetails.h │ │ │ │ ├── DBTEAMLOGSsoAddCertType.h │ │ │ │ ├── DBTEAMLOGSsoAddLoginUrlDetails.h │ │ │ │ ├── DBTEAMLOGSsoAddLoginUrlType.h │ │ │ │ ├── DBTEAMLOGSsoAddLogoutUrlDetails.h │ │ │ │ ├── DBTEAMLOGSsoAddLogoutUrlType.h │ │ │ │ ├── DBTEAMLOGSsoChangeCertDetails.h │ │ │ │ ├── DBTEAMLOGSsoChangeCertType.h │ │ │ │ ├── DBTEAMLOGSsoChangeLoginUrlDetails.h │ │ │ │ ├── DBTEAMLOGSsoChangeLoginUrlType.h │ │ │ │ ├── DBTEAMLOGSsoChangeLogoutUrlDetails.h │ │ │ │ ├── DBTEAMLOGSsoChangeLogoutUrlType.h │ │ │ │ ├── DBTEAMLOGSsoChangePolicyDetails.h │ │ │ │ ├── DBTEAMLOGSsoChangePolicyType.h │ │ │ │ ├── DBTEAMLOGSsoChangeSamlIdentityModeDetails.h │ │ │ │ ├── DBTEAMLOGSsoChangeSamlIdentityModeType.h │ │ │ │ ├── DBTEAMLOGSsoErrorDetails.h │ │ │ │ ├── DBTEAMLOGSsoErrorType.h │ │ │ │ ├── DBTEAMLOGSsoRemoveCertDetails.h │ │ │ │ ├── DBTEAMLOGSsoRemoveCertType.h │ │ │ │ ├── DBTEAMLOGSsoRemoveLoginUrlDetails.h │ │ │ │ ├── DBTEAMLOGSsoRemoveLoginUrlType.h │ │ │ │ ├── DBTEAMLOGSsoRemoveLogoutUrlDetails.h │ │ │ │ ├── DBTEAMLOGSsoRemoveLogoutUrlType.h │ │ │ │ ├── DBTEAMLOGStartedEnterpriseAdminSessionDetails.h │ │ │ │ ├── DBTEAMLOGStartedEnterpriseAdminSessionType.h │ │ │ │ ├── DBTEAMLOGTeamActivityCreateReportDetails.h │ │ │ │ ├── DBTEAMLOGTeamActivityCreateReportFailDetails.h │ │ │ │ ├── DBTEAMLOGTeamActivityCreateReportFailType.h │ │ │ │ ├── DBTEAMLOGTeamActivityCreateReportType.h │ │ │ │ ├── DBTEAMLOGTeamBrandingPolicy.h │ │ │ │ ├── DBTEAMLOGTeamBrandingPolicyChangedDetails.h │ │ │ │ ├── DBTEAMLOGTeamBrandingPolicyChangedType.h │ │ │ │ ├── DBTEAMLOGTeamDetails.h │ │ │ │ ├── DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails.h │ │ │ │ ├── DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType.h │ │ │ │ ├── DBTEAMLOGTeamEncryptionKeyCreateKeyDetails.h │ │ │ │ ├── DBTEAMLOGTeamEncryptionKeyCreateKeyType.h │ │ │ │ ├── DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails.h │ │ │ │ ├── DBTEAMLOGTeamEncryptionKeyDeleteKeyType.h │ │ │ │ ├── DBTEAMLOGTeamEncryptionKeyDisableKeyDetails.h │ │ │ │ ├── DBTEAMLOGTeamEncryptionKeyDisableKeyType.h │ │ │ │ ├── DBTEAMLOGTeamEncryptionKeyEnableKeyDetails.h │ │ │ │ ├── DBTEAMLOGTeamEncryptionKeyEnableKeyType.h │ │ │ │ ├── DBTEAMLOGTeamEncryptionKeyRotateKeyDetails.h │ │ │ │ ├── DBTEAMLOGTeamEncryptionKeyRotateKeyType.h │ │ │ │ ├── DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails.h │ │ │ │ ├── DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType.h │ │ │ │ ├── DBTEAMLOGTeamEvent.h │ │ │ │ ├── DBTEAMLOGTeamExtensionsPolicy.h │ │ │ │ ├── DBTEAMLOGTeamExtensionsPolicyChangedDetails.h │ │ │ │ ├── DBTEAMLOGTeamExtensionsPolicyChangedType.h │ │ │ │ ├── DBTEAMLOGTeamFolderChangeStatusDetails.h │ │ │ │ ├── DBTEAMLOGTeamFolderChangeStatusType.h │ │ │ │ ├── DBTEAMLOGTeamFolderCreateDetails.h │ │ │ │ ├── DBTEAMLOGTeamFolderCreateType.h │ │ │ │ ├── DBTEAMLOGTeamFolderDowngradeDetails.h │ │ │ │ ├── DBTEAMLOGTeamFolderDowngradeType.h │ │ │ │ ├── DBTEAMLOGTeamFolderPermanentlyDeleteDetails.h │ │ │ │ ├── DBTEAMLOGTeamFolderPermanentlyDeleteType.h │ │ │ │ ├── DBTEAMLOGTeamFolderRenameDetails.h │ │ │ │ ├── DBTEAMLOGTeamFolderRenameType.h │ │ │ │ ├── DBTEAMLOGTeamInviteDetails.h │ │ │ │ ├── DBTEAMLOGTeamLinkedAppLogInfo.h │ │ │ │ ├── DBTEAMLOGTeamLogInfo.h │ │ │ │ ├── DBTEAMLOGTeamMemberLogInfo.h │ │ │ │ ├── DBTEAMLOGTeamMembershipType.h │ │ │ │ ├── DBTEAMLOGTeamMergeFromDetails.h │ │ │ │ ├── DBTEAMLOGTeamMergeFromType.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestAcceptedDetails.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestAcceptedExtraDetails.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestAcceptedType.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestAutoCanceledDetails.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestAutoCanceledType.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestCanceledDetails.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestCanceledExtraDetails.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestCanceledType.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestExpiredDetails.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestExpiredExtraDetails.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestExpiredType.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestReminderDetails.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestReminderExtraDetails.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestReminderType.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestRevokedDetails.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestRevokedType.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails.h │ │ │ │ ├── DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType.h │ │ │ │ ├── DBTEAMLOGTeamMergeToDetails.h │ │ │ │ ├── DBTEAMLOGTeamMergeToType.h │ │ │ │ ├── DBTEAMLOGTeamName.h │ │ │ │ ├── DBTEAMLOGTeamProfileAddBackgroundDetails.h │ │ │ │ ├── DBTEAMLOGTeamProfileAddBackgroundType.h │ │ │ │ ├── DBTEAMLOGTeamProfileAddLogoDetails.h │ │ │ │ ├── DBTEAMLOGTeamProfileAddLogoType.h │ │ │ │ ├── DBTEAMLOGTeamProfileChangeBackgroundDetails.h │ │ │ │ ├── DBTEAMLOGTeamProfileChangeBackgroundType.h │ │ │ │ ├── DBTEAMLOGTeamProfileChangeDefaultLanguageDetails.h │ │ │ │ ├── DBTEAMLOGTeamProfileChangeDefaultLanguageType.h │ │ │ │ ├── DBTEAMLOGTeamProfileChangeLogoDetails.h │ │ │ │ ├── DBTEAMLOGTeamProfileChangeLogoType.h │ │ │ │ ├── DBTEAMLOGTeamProfileChangeNameDetails.h │ │ │ │ ├── DBTEAMLOGTeamProfileChangeNameType.h │ │ │ │ ├── DBTEAMLOGTeamProfileRemoveBackgroundDetails.h │ │ │ │ ├── DBTEAMLOGTeamProfileRemoveBackgroundType.h │ │ │ │ ├── DBTEAMLOGTeamProfileRemoveLogoDetails.h │ │ │ │ ├── DBTEAMLOGTeamProfileRemoveLogoType.h │ │ │ │ ├── DBTEAMLOGTeamSelectiveSyncPolicy.h │ │ │ │ ├── DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails.h │ │ │ │ ├── DBTEAMLOGTeamSelectiveSyncPolicyChangedType.h │ │ │ │ ├── DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails.h │ │ │ │ ├── DBTEAMLOGTeamSelectiveSyncSettingsChangedType.h │ │ │ │ ├── DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails.h │ │ │ │ ├── DBTEAMLOGTeamSharingWhitelistSubjectsChangedType.h │ │ │ │ ├── DBTEAMLOGTfaAddBackupPhoneDetails.h │ │ │ │ ├── DBTEAMLOGTfaAddBackupPhoneType.h │ │ │ │ ├── DBTEAMLOGTfaAddExceptionDetails.h │ │ │ │ ├── DBTEAMLOGTfaAddExceptionType.h │ │ │ │ ├── DBTEAMLOGTfaAddSecurityKeyDetails.h │ │ │ │ ├── DBTEAMLOGTfaAddSecurityKeyType.h │ │ │ │ ├── DBTEAMLOGTfaChangeBackupPhoneDetails.h │ │ │ │ ├── DBTEAMLOGTfaChangeBackupPhoneType.h │ │ │ │ ├── DBTEAMLOGTfaChangePolicyDetails.h │ │ │ │ ├── DBTEAMLOGTfaChangePolicyType.h │ │ │ │ ├── DBTEAMLOGTfaChangeStatusDetails.h │ │ │ │ ├── DBTEAMLOGTfaChangeStatusType.h │ │ │ │ ├── DBTEAMLOGTfaConfiguration.h │ │ │ │ ├── DBTEAMLOGTfaRemoveBackupPhoneDetails.h │ │ │ │ ├── DBTEAMLOGTfaRemoveBackupPhoneType.h │ │ │ │ ├── DBTEAMLOGTfaRemoveExceptionDetails.h │ │ │ │ ├── DBTEAMLOGTfaRemoveExceptionType.h │ │ │ │ ├── DBTEAMLOGTfaRemoveSecurityKeyDetails.h │ │ │ │ ├── DBTEAMLOGTfaRemoveSecurityKeyType.h │ │ │ │ ├── DBTEAMLOGTfaResetDetails.h │ │ │ │ ├── DBTEAMLOGTfaResetType.h │ │ │ │ ├── DBTEAMLOGTimeUnit.h │ │ │ │ ├── DBTEAMLOGTrustedNonTeamMemberLogInfo.h │ │ │ │ ├── DBTEAMLOGTrustedNonTeamMemberType.h │ │ │ │ ├── DBTEAMLOGTrustedTeamsRequestAction.h │ │ │ │ ├── DBTEAMLOGTrustedTeamsRequestState.h │ │ │ │ ├── DBTEAMLOGTwoAccountChangePolicyDetails.h │ │ │ │ ├── DBTEAMLOGTwoAccountChangePolicyType.h │ │ │ │ ├── DBTEAMLOGTwoAccountPolicy.h │ │ │ │ ├── DBTEAMLOGUndoNamingConventionDetails.h │ │ │ │ ├── DBTEAMLOGUndoNamingConventionType.h │ │ │ │ ├── DBTEAMLOGUndoOrganizeFolderWithTidyDetails.h │ │ │ │ ├── DBTEAMLOGUndoOrganizeFolderWithTidyType.h │ │ │ │ ├── DBTEAMLOGUserLinkedAppLogInfo.h │ │ │ │ ├── DBTEAMLOGUserLogInfo.h │ │ │ │ ├── DBTEAMLOGUserNameLogInfo.h │ │ │ │ ├── DBTEAMLOGUserOrTeamLinkedAppLogInfo.h │ │ │ │ ├── DBTEAMLOGUserTagsAddedDetails.h │ │ │ │ ├── DBTEAMLOGUserTagsAddedType.h │ │ │ │ ├── DBTEAMLOGUserTagsRemovedDetails.h │ │ │ │ ├── DBTEAMLOGUserTagsRemovedType.h │ │ │ │ ├── DBTEAMLOGViewerInfoPolicyChangedDetails.h │ │ │ │ ├── DBTEAMLOGViewerInfoPolicyChangedType.h │ │ │ │ ├── DBTEAMLOGWatermarkingPolicy.h │ │ │ │ ├── DBTEAMLOGWatermarkingPolicyChangedDetails.h │ │ │ │ ├── DBTEAMLOGWatermarkingPolicyChangedType.h │ │ │ │ ├── DBTEAMLOGWebDeviceSessionLogInfo.h │ │ │ │ ├── DBTEAMLOGWebSessionLogInfo.h │ │ │ │ ├── DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails.h │ │ │ │ ├── DBTEAMLOGWebSessionsChangeActiveSessionLimitType.h │ │ │ │ ├── DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails.h │ │ │ │ ├── DBTEAMLOGWebSessionsChangeFixedLengthPolicyType.h │ │ │ │ ├── DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails.h │ │ │ │ ├── DBTEAMLOGWebSessionsChangeIdleLengthPolicyType.h │ │ │ │ ├── DBTEAMLOGWebSessionsFixedLengthPolicy.h │ │ │ │ └── DBTEAMLOGWebSessionsIdleLengthPolicy.h │ │ │ ├── TeamPolicies/ │ │ │ │ ├── DBTeamPoliciesObjects.m │ │ │ │ └── Headers/ │ │ │ │ ├── DBTEAMPOLICIESCameraUploadsPolicyState.h │ │ │ │ ├── DBTEAMPOLICIESComputerBackupPolicyState.h │ │ │ │ ├── DBTEAMPOLICIESEmmState.h │ │ │ │ ├── DBTEAMPOLICIESExternalDriveBackupPolicyState.h │ │ │ │ ├── DBTEAMPOLICIESFileLockingPolicyState.h │ │ │ │ ├── DBTEAMPOLICIESFileProviderMigrationPolicyState.h │ │ │ │ ├── DBTEAMPOLICIESGroupCreation.h │ │ │ │ ├── DBTEAMPOLICIESOfficeAddInPolicy.h │ │ │ │ ├── DBTEAMPOLICIESPaperDefaultFolderPolicy.h │ │ │ │ ├── DBTEAMPOLICIESPaperDeploymentPolicy.h │ │ │ │ ├── DBTEAMPOLICIESPaperDesktopPolicy.h │ │ │ │ ├── DBTEAMPOLICIESPaperEnabledPolicy.h │ │ │ │ ├── DBTEAMPOLICIESPasswordControlMode.h │ │ │ │ ├── DBTEAMPOLICIESPasswordStrengthPolicy.h │ │ │ │ ├── DBTEAMPOLICIESRolloutMethod.h │ │ │ │ ├── DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy.h │ │ │ │ ├── DBTEAMPOLICIESSharedFolderJoinPolicy.h │ │ │ │ ├── DBTEAMPOLICIESSharedFolderMemberPolicy.h │ │ │ │ ├── DBTEAMPOLICIESSharedLinkCreatePolicy.h │ │ │ │ ├── DBTEAMPOLICIESShowcaseDownloadPolicy.h │ │ │ │ ├── DBTEAMPOLICIESShowcaseEnabledPolicy.h │ │ │ │ ├── DBTEAMPOLICIESShowcaseExternalSharingPolicy.h │ │ │ │ ├── DBTEAMPOLICIESSmartSyncPolicy.h │ │ │ │ ├── DBTEAMPOLICIESSmarterSmartSyncPolicyState.h │ │ │ │ ├── DBTEAMPOLICIESSsoPolicy.h │ │ │ │ ├── DBTEAMPOLICIESSuggestMembersPolicy.h │ │ │ │ ├── DBTEAMPOLICIESTeamMemberPolicies.h │ │ │ │ ├── DBTEAMPOLICIESTeamSharingPolicies.h │ │ │ │ ├── DBTEAMPOLICIESTwoStepVerificationPolicy.h │ │ │ │ └── DBTEAMPOLICIESTwoStepVerificationState.h │ │ │ ├── Users/ │ │ │ │ ├── DBUsersObjects.m │ │ │ │ └── Headers/ │ │ │ │ ├── DBUSERSAccount.h │ │ │ │ ├── DBUSERSBasicAccount.h │ │ │ │ ├── DBUSERSFileLockingValue.h │ │ │ │ ├── DBUSERSFullAccount.h │ │ │ │ ├── DBUSERSFullTeam.h │ │ │ │ ├── DBUSERSGetAccountArg.h │ │ │ │ ├── DBUSERSGetAccountBatchArg.h │ │ │ │ ├── DBUSERSGetAccountBatchError.h │ │ │ │ ├── DBUSERSGetAccountError.h │ │ │ │ ├── DBUSERSIndividualSpaceAllocation.h │ │ │ │ ├── DBUSERSName.h │ │ │ │ ├── DBUSERSPaperAsFilesValue.h │ │ │ │ ├── DBUSERSSpaceAllocation.h │ │ │ │ ├── DBUSERSSpaceUsage.h │ │ │ │ ├── DBUSERSTeam.h │ │ │ │ ├── DBUSERSTeamSpaceAllocation.h │ │ │ │ ├── DBUSERSUserFeature.h │ │ │ │ ├── DBUSERSUserFeatureValue.h │ │ │ │ ├── DBUSERSUserFeaturesGetValuesBatchArg.h │ │ │ │ ├── DBUSERSUserFeaturesGetValuesBatchError.h │ │ │ │ └── DBUSERSUserFeaturesGetValuesBatchResult.h │ │ │ └── UsersCommon/ │ │ │ ├── DBUsersCommonObjects.m │ │ │ └── Headers/ │ │ │ └── DBUSERSCOMMONAccountType.h │ │ ├── Client/ │ │ │ ├── DBAppBaseClient.h │ │ │ ├── DBAppBaseClient.m │ │ │ ├── DBTeamBaseClient.h │ │ │ ├── DBTeamBaseClient.m │ │ │ ├── DBUserBaseClient.h │ │ │ └── DBUserBaseClient.m │ │ ├── DBSDKImportsGenerated.h │ │ ├── Resources/ │ │ │ ├── DBSerializableProtocol.h │ │ │ ├── DBStoneBase.h │ │ │ ├── DBStoneBase.m │ │ │ ├── DBStoneSerializers.h │ │ │ ├── DBStoneSerializers.m │ │ │ ├── DBStoneValidators.h │ │ │ └── DBStoneValidators.m │ │ └── Routes/ │ │ ├── DBACCOUNTUserAuthRoutes.h │ │ ├── DBACCOUNTUserAuthRoutes.m │ │ ├── DBAUTHAppAuthRoutes.h │ │ ├── DBAUTHAppAuthRoutes.m │ │ ├── DBAUTHUserAuthRoutes.h │ │ ├── DBAUTHUserAuthRoutes.m │ │ ├── DBCHECKAppAuthRoutes.h │ │ ├── DBCHECKAppAuthRoutes.m │ │ ├── DBCHECKUserAuthRoutes.h │ │ ├── DBCHECKUserAuthRoutes.m │ │ ├── DBCONTACTSUserAuthRoutes.h │ │ ├── DBCONTACTSUserAuthRoutes.m │ │ ├── DBFILEPROPERTIESTeamAuthRoutes.h │ │ ├── DBFILEPROPERTIESTeamAuthRoutes.m │ │ ├── DBFILEPROPERTIESUserAuthRoutes.h │ │ ├── DBFILEPROPERTIESUserAuthRoutes.m │ │ ├── DBFILEREQUESTSUserAuthRoutes.h │ │ ├── DBFILEREQUESTSUserAuthRoutes.m │ │ ├── DBFILESAppAuthRoutes.h │ │ ├── DBFILESAppAuthRoutes.m │ │ ├── DBFILESUserAuthRoutes.h │ │ ├── DBFILESUserAuthRoutes.m │ │ ├── DBOPENIDUserAuthRoutes.h │ │ ├── DBOPENIDUserAuthRoutes.m │ │ ├── DBPAPERUserAuthRoutes.h │ │ ├── DBPAPERUserAuthRoutes.m │ │ ├── DBSHARINGAppAuthRoutes.h │ │ ├── DBSHARINGAppAuthRoutes.m │ │ ├── DBSHARINGUserAuthRoutes.h │ │ ├── DBSHARINGUserAuthRoutes.m │ │ ├── DBTEAMLOGTeamAuthRoutes.h │ │ ├── DBTEAMLOGTeamAuthRoutes.m │ │ ├── DBTEAMTeamAuthRoutes.h │ │ ├── DBTEAMTeamAuthRoutes.m │ │ ├── DBUSERSUserAuthRoutes.h │ │ ├── DBUSERSUserAuthRoutes.m │ │ └── RouteObjects/ │ │ ├── DBACCOUNTRouteObjects.h │ │ ├── DBACCOUNTRouteObjects.m │ │ ├── DBAUTHRouteObjects.h │ │ ├── DBAUTHRouteObjects.m │ │ ├── DBCHECKRouteObjects.h │ │ ├── DBCHECKRouteObjects.m │ │ ├── DBCONTACTSRouteObjects.h │ │ ├── DBCONTACTSRouteObjects.m │ │ ├── DBFILEPROPERTIESRouteObjects.h │ │ ├── DBFILEPROPERTIESRouteObjects.m │ │ ├── DBFILEREQUESTSRouteObjects.h │ │ ├── DBFILEREQUESTSRouteObjects.m │ │ ├── DBFILESRouteObjects.h │ │ ├── DBFILESRouteObjects.m │ │ ├── DBOPENIDRouteObjects.h │ │ ├── DBOPENIDRouteObjects.m │ │ ├── DBPAPERRouteObjects.h │ │ ├── DBPAPERRouteObjects.m │ │ ├── DBSHARINGRouteObjects.h │ │ ├── DBSHARINGRouteObjects.m │ │ ├── DBTEAMLOGRouteObjects.h │ │ ├── DBTEAMLOGRouteObjects.m │ │ ├── DBTEAMRouteObjects.h │ │ ├── DBTEAMRouteObjects.m │ │ ├── DBUSERSRouteObjects.h │ │ └── DBUSERSRouteObjects.m │ └── Handwritten/ │ ├── DBAppClient.h │ ├── DBAppClient.m │ ├── DBClientsManager.h │ ├── DBClientsManager.m │ ├── DBSDKImportsShared.h │ ├── DBTeamClient.h │ ├── DBTeamClient.m │ ├── DBUserClient.h │ ├── DBUserClient.m │ ├── Networking/ │ │ ├── DBDelegate.m │ │ ├── DBGlobalErrorResponseHandler.h │ │ ├── DBGlobalErrorResponseHandler.m │ │ ├── DBHandlerTypes.h │ │ ├── DBRequestErrors.h │ │ ├── DBRequestErrors.m │ │ ├── DBSDKReachability.m │ │ ├── DBSessionData.m │ │ ├── DBTasks.h │ │ ├── DBTasks.m │ │ ├── DBTasksImpl.m │ │ ├── DBTasksStorage.h │ │ ├── DBTasksStorage.m │ │ ├── DBTransportBaseClient.h │ │ ├── DBTransportBaseClient.m │ │ ├── DBTransportBaseConfig.h │ │ ├── DBTransportBaseConfig.m │ │ ├── DBTransportBaseHostnameConfig.h │ │ ├── DBTransportBaseHostnameConfig.m │ │ ├── DBTransportClientProtocol.h │ │ ├── DBTransportDefaultClient.h │ │ ├── DBTransportDefaultClient.m │ │ ├── DBTransportDefaultConfig.h │ │ ├── DBTransportDefaultConfig.m │ │ ├── DBURLSessionTaskResponseBlockWrapper.m │ │ └── DBURLSessionTaskWithTokenRefresh.m │ ├── OAuth/ │ │ ├── DBAccessToken+NSSecureCoding.m │ │ ├── DBAccessTokenProvider.h │ │ ├── DBAccessTokenProviderImpl.m │ │ ├── DBLoadingStatusDelegate.h │ │ ├── DBOAuthConstants.m │ │ ├── DBOAuthManager.h │ │ ├── DBOAuthManager.m │ │ ├── DBOAuthPKCESession.m │ │ ├── DBOAuthResult.h │ │ ├── DBOAuthResult.m │ │ ├── DBOAuthResultCompletion.h │ │ ├── DBOAuthTokenRequest.m │ │ ├── DBOAuthUtils.m │ │ ├── DBSDKKeychain.h │ │ ├── DBSDKKeychain.m │ │ ├── DBScopeRequest.h │ │ ├── DBScopeRequest.m │ │ └── DBSharedApplicationProtocol.h │ └── Resources/ │ ├── DBChunkInputStream.m │ ├── DBCustomDatatypes.h │ ├── DBCustomDatatypes.m │ ├── DBCustomRoutes.h │ ├── DBCustomRoutes.m │ ├── DBCustomTasks.h │ ├── DBCustomTasks.m │ ├── DBSDKConstants.h │ └── DBSDKConstants.m ├── TestObjectiveDropbox/ │ ├── IntegrationTests/ │ │ ├── TestAppType.h │ │ ├── TestClasses.h │ │ ├── TestClasses.m │ │ ├── TestData.h │ │ └── TestData.m │ ├── Podfile │ ├── TestObjectiveDropbox.xcodeproj/ │ │ ├── project.pbxproj │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ ├── TestObjectiveDropbox_iOS.xcscheme │ │ └── TestObjectiveDropbox_macOS.xcscheme │ ├── TestObjectiveDropbox_iOS/ │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── TestObjectiveDropbox_iOS.entitlements │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ ├── TestObjectiveDropbox_iOSTests/ │ │ ├── FileRoutesTests.m │ │ ├── Info.plist │ │ ├── TeamRoutesTests.m │ │ ├── TestAsciiEncoding.m │ │ ├── TestAuthTokenGenerator.h │ │ └── TestAuthTokenGenerator.m │ ├── TestObjectiveDropbox_macOS/ │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Base.lproj/ │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ └── TestObjectiveDropbox_macOSTests/ │ └── Info.plist ├── generate_base_client.py ├── update_repo_check.sh └── update_version.sh