├── .clang-format ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── .jazzy.json ├── Examples └── DBRoulette │ ├── README.md │ ├── iOS │ ├── CarthageProject │ │ └── DBRoulette │ │ │ ├── Cartfile │ │ │ ├── Cartfile.resolved │ │ │ ├── DBRoulette.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── 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 │ ├── CocoaPodsProject │ │ └── DBRoulette │ │ │ ├── DBRoulette.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── 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 │ │ │ ├── Podfile │ │ │ └── Podfile.lock │ └── SubprojectProject │ │ └── DBRoulette │ │ ├── Cartfile │ │ ├── Cartfile.resolved │ │ ├── DBRoulette.xcodeproj │ │ └── project.pbxproj │ │ └── 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 │ └── macOS │ └── CarthageProject │ └── DBRoulette │ ├── Cartfile │ ├── Cartfile.resolved │ ├── DBRoulette.xcodeproj │ └── project.pbxproj │ └── 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 ├── Format ├── UmbrellaHeader.h ├── format_files.sh ├── generate_docs.sh ├── jazzy.css └── jazzy.json ├── Images ├── DBRouletteAuthView.png ├── DBRouletteAuthViewMacOS.png ├── DBRouletteView.png ├── DBRouletteViewMacOS.png ├── InfoPlistExample.png ├── OAuthFlowApproval.png └── OAuthFlowInit.png ├── 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 ├── Podfile.lock ├── 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 /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/.gitmodules -------------------------------------------------------------------------------- /.jazzy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/.jazzy.json -------------------------------------------------------------------------------- /Examples/DBRoulette/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/README.md -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/CarthageProject/DBRoulette/Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/CarthageProject/DBRoulette/Cartfile -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/CarthageProject/DBRoulette/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/CarthageProject/DBRoulette/Cartfile.resolved -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/CarthageProject/DBRoulette/DBRoulette.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/CarthageProject/DBRoulette/DBRoulette.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/CarthageProject/DBRoulette/DBRoulette/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/CarthageProject/DBRoulette/DBRoulette/AppDelegate.h -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/CarthageProject/DBRoulette/DBRoulette/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/CarthageProject/DBRoulette/DBRoulette/AppDelegate.m -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/CarthageProject/DBRoulette/DBRoulette/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/CarthageProject/DBRoulette/DBRoulette/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/CarthageProject/DBRoulette/DBRoulette/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/CarthageProject/DBRoulette/DBRoulette/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/CarthageProject/DBRoulette/DBRoulette/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/CarthageProject/DBRoulette/DBRoulette/Info.plist -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/CarthageProject/DBRoulette/DBRoulette/PhotoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/CarthageProject/DBRoulette/DBRoulette/PhotoViewController.h -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/CarthageProject/DBRoulette/DBRoulette/PhotoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/CarthageProject/DBRoulette/DBRoulette/PhotoViewController.m -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/CarthageProject/DBRoulette/DBRoulette/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/CarthageProject/DBRoulette/DBRoulette/ViewController.h -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/CarthageProject/DBRoulette/DBRoulette/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/CarthageProject/DBRoulette/DBRoulette/ViewController.m -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/CarthageProject/DBRoulette/DBRoulette/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/CarthageProject/DBRoulette/DBRoulette/main.m -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/CocoaPodsProject/DBRoulette/DBRoulette.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/CocoaPodsProject/DBRoulette/DBRoulette.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/CocoaPodsProject/DBRoulette/DBRoulette/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/CocoaPodsProject/DBRoulette/DBRoulette/AppDelegate.h -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/CocoaPodsProject/DBRoulette/DBRoulette/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/CocoaPodsProject/DBRoulette/DBRoulette/AppDelegate.m -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/CocoaPodsProject/DBRoulette/DBRoulette/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/CocoaPodsProject/DBRoulette/DBRoulette/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/CocoaPodsProject/DBRoulette/DBRoulette/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/CocoaPodsProject/DBRoulette/DBRoulette/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/CocoaPodsProject/DBRoulette/DBRoulette/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/CocoaPodsProject/DBRoulette/DBRoulette/Info.plist -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/CocoaPodsProject/DBRoulette/DBRoulette/PhotoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/CocoaPodsProject/DBRoulette/DBRoulette/PhotoViewController.h -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/CocoaPodsProject/DBRoulette/DBRoulette/PhotoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/CocoaPodsProject/DBRoulette/DBRoulette/PhotoViewController.m -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/CocoaPodsProject/DBRoulette/DBRoulette/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/CocoaPodsProject/DBRoulette/DBRoulette/ViewController.h -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/CocoaPodsProject/DBRoulette/DBRoulette/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/CocoaPodsProject/DBRoulette/DBRoulette/ViewController.m -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/CocoaPodsProject/DBRoulette/DBRoulette/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/CocoaPodsProject/DBRoulette/DBRoulette/main.m -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/CocoaPodsProject/DBRoulette/Podfile: -------------------------------------------------------------------------------- 1 | target 'DBRoulette' do 2 | pod 'ObjectiveDropboxOfficial' 3 | end -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/CocoaPodsProject/DBRoulette/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/CocoaPodsProject/DBRoulette/Podfile.lock -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/SubprojectProject/DBRoulette/Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/SubprojectProject/DBRoulette/Cartfile -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/SubprojectProject/DBRoulette/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/SubprojectProject/DBRoulette/Cartfile.resolved -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/SubprojectProject/DBRoulette/DBRoulette.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/SubprojectProject/DBRoulette/DBRoulette.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/SubprojectProject/DBRoulette/DBRoulette/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/SubprojectProject/DBRoulette/DBRoulette/AppDelegate.h -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/SubprojectProject/DBRoulette/DBRoulette/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/SubprojectProject/DBRoulette/DBRoulette/AppDelegate.m -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/SubprojectProject/DBRoulette/DBRoulette/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/SubprojectProject/DBRoulette/DBRoulette/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/SubprojectProject/DBRoulette/DBRoulette/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/SubprojectProject/DBRoulette/DBRoulette/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/SubprojectProject/DBRoulette/DBRoulette/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/SubprojectProject/DBRoulette/DBRoulette/Info.plist -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/SubprojectProject/DBRoulette/DBRoulette/PhotoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/SubprojectProject/DBRoulette/DBRoulette/PhotoViewController.h -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/SubprojectProject/DBRoulette/DBRoulette/PhotoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/SubprojectProject/DBRoulette/DBRoulette/PhotoViewController.m -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/SubprojectProject/DBRoulette/DBRoulette/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/SubprojectProject/DBRoulette/DBRoulette/ViewController.h -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/SubprojectProject/DBRoulette/DBRoulette/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/SubprojectProject/DBRoulette/DBRoulette/ViewController.m -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/SubprojectProject/DBRoulette/DBRoulette/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/SubprojectProject/DBRoulette/DBRoulette/main.m -------------------------------------------------------------------------------- /Examples/DBRoulette/macOS/CarthageProject/DBRoulette/Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/macOS/CarthageProject/DBRoulette/Cartfile -------------------------------------------------------------------------------- /Examples/DBRoulette/macOS/CarthageProject/DBRoulette/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/macOS/CarthageProject/DBRoulette/Cartfile.resolved -------------------------------------------------------------------------------- /Examples/DBRoulette/macOS/CarthageProject/DBRoulette/DBRoulette.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/macOS/CarthageProject/DBRoulette/DBRoulette.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/DBRoulette/macOS/CarthageProject/DBRoulette/DBRoulette/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/macOS/CarthageProject/DBRoulette/DBRoulette/AppDelegate.h -------------------------------------------------------------------------------- /Examples/DBRoulette/macOS/CarthageProject/DBRoulette/DBRoulette/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/macOS/CarthageProject/DBRoulette/DBRoulette/AppDelegate.m -------------------------------------------------------------------------------- /Examples/DBRoulette/macOS/CarthageProject/DBRoulette/DBRoulette/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/macOS/CarthageProject/DBRoulette/DBRoulette/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Examples/DBRoulette/macOS/CarthageProject/DBRoulette/DBRoulette/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/macOS/CarthageProject/DBRoulette/DBRoulette/Info.plist -------------------------------------------------------------------------------- /Examples/DBRoulette/macOS/CarthageProject/DBRoulette/DBRoulette/PhotoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/macOS/CarthageProject/DBRoulette/DBRoulette/PhotoViewController.h -------------------------------------------------------------------------------- /Examples/DBRoulette/macOS/CarthageProject/DBRoulette/DBRoulette/PhotoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/macOS/CarthageProject/DBRoulette/DBRoulette/PhotoViewController.m -------------------------------------------------------------------------------- /Examples/DBRoulette/macOS/CarthageProject/DBRoulette/DBRoulette/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/macOS/CarthageProject/DBRoulette/DBRoulette/ViewController.h -------------------------------------------------------------------------------- /Examples/DBRoulette/macOS/CarthageProject/DBRoulette/DBRoulette/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/macOS/CarthageProject/DBRoulette/DBRoulette/ViewController.m -------------------------------------------------------------------------------- /Examples/DBRoulette/macOS/CarthageProject/DBRoulette/DBRoulette/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/macOS/CarthageProject/DBRoulette/DBRoulette/main.m -------------------------------------------------------------------------------- /Format/UmbrellaHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Format/UmbrellaHeader.h -------------------------------------------------------------------------------- /Format/format_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Format/format_files.sh -------------------------------------------------------------------------------- /Format/generate_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Format/generate_docs.sh -------------------------------------------------------------------------------- /Format/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Format/jazzy.css -------------------------------------------------------------------------------- /Format/jazzy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Format/jazzy.json -------------------------------------------------------------------------------- /Images/DBRouletteAuthView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Images/DBRouletteAuthView.png -------------------------------------------------------------------------------- /Images/DBRouletteAuthViewMacOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Images/DBRouletteAuthViewMacOS.png -------------------------------------------------------------------------------- /Images/DBRouletteView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Images/DBRouletteView.png -------------------------------------------------------------------------------- /Images/DBRouletteViewMacOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Images/DBRouletteViewMacOS.png -------------------------------------------------------------------------------- /Images/InfoPlistExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Images/InfoPlistExample.png -------------------------------------------------------------------------------- /Images/OAuthFlowApproval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Images/OAuthFlowApproval.png -------------------------------------------------------------------------------- /Images/OAuthFlowInit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Images/OAuthFlowInit.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/LICENSE -------------------------------------------------------------------------------- /ObjectiveDropboxOfficial.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/ObjectiveDropboxOfficial.podspec -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/README.md -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/DBClientsManager+Protected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/DBClientsManager+Protected.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBDelegate.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBGlobalErrorResponseHandler+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBGlobalErrorResponseHandler+Internal.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBHandlerTypesInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBHandlerTypesInternal.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBSDKReachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBSDKReachability.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBSessionData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBSessionData.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBTasks+Protected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBTasks+Protected.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBTasksImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBTasksImpl.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBTransportBaseClient+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBTransportBaseClient+Internal.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBURLSessionTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBURLSessionTask.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBURLSessionTaskResponseBlockWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBURLSessionTaskResponseBlockWrapper.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBURLSessionTaskWithTokenRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBURLSessionTaskWithTokenRefresh.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/OAuth/DBAccessToken+NSSecureCoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/OAuth/DBAccessToken+NSSecureCoding.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/OAuth/DBAccessTokenProvider+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/OAuth/DBAccessTokenProvider+Internal.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/OAuth/DBOAuthConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/OAuth/DBOAuthConstants.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/OAuth/DBOAuthManager+Protected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/OAuth/DBOAuthManager+Protected.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/OAuth/DBOAuthPKCESession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/OAuth/DBOAuthPKCESession.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/OAuth/DBOAuthTokenRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/OAuth/DBOAuthTokenRequest.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/OAuth/DBOAuthUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/OAuth/DBOAuthUtils.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/OAuth/DBScopeRequest+Protected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/OAuth/DBScopeRequest+Protected.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/Resources/DBChunkInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/Resources/DBChunkInputStream.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/Resources/DBSDKSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/Resources/DBSDKSystem.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/PlatformInternal/iOS/DBLoadingViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/PlatformInternal/iOS/DBLoadingViewController.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Umbrella/ObjectiveDropboxOfficial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Umbrella/ObjectiveDropboxOfficial.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Umbrella/ObjectiveDropboxOfficialLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Umbrella/ObjectiveDropboxOfficialLib.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/ObjectiveDropboxOfficial.xcodeproj/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/ObjectiveDropboxOfficial.xcodeproj/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/ObjectiveDropboxOfficial.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/ObjectiveDropboxOfficial.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/DBLoadingViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/DBLoadingViewController.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/DBOAuthMobile-iOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/DBOAuthMobile-iOS.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/DBOAuthMobile-iOS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/DBOAuthMobile-iOS.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/DBOAuthMobileManager-iOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/DBOAuthMobileManager-iOS.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/DBOAuthMobileManager-iOS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/DBOAuthMobileManager-iOS.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/DBSDKImports-iOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/DBSDKImports-iOS.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/Info.plist -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_macOS/DBOAuthDesktop-macOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_macOS/DBOAuthDesktop-macOS.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_macOS/DBOAuthDesktop-macOS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_macOS/DBOAuthDesktop-macOS.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_macOS/DBSDKImports-macOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_macOS/DBSDKImports-macOS.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_macOS/Info.plist -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Account/DBAccountObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Account/DBAccountObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Account/Headers/DBACCOUNTPhotoSourceArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Account/Headers/DBACCOUNTPhotoSourceArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Async/DBAsyncObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Async/DBAsyncObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Async/Headers/DBASYNCLaunchEmptyResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Async/Headers/DBASYNCLaunchEmptyResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Async/Headers/DBASYNCLaunchResultBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Async/Headers/DBASYNCLaunchResultBase.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Async/Headers/DBASYNCPollArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Async/Headers/DBASYNCPollArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Async/Headers/DBASYNCPollEmptyResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Async/Headers/DBASYNCPollEmptyResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Async/Headers/DBASYNCPollError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Async/Headers/DBASYNCPollError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Async/Headers/DBASYNCPollResultBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Async/Headers/DBASYNCPollResultBase.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Auth/DBAuthObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Auth/DBAuthObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Auth/Headers/DBAUTHAccessError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Auth/Headers/DBAUTHAccessError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Auth/Headers/DBAUTHAuthError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Auth/Headers/DBAUTHAuthError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Auth/Headers/DBAUTHPaperAccessError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Auth/Headers/DBAUTHPaperAccessError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Auth/Headers/DBAUTHRateLimitError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Auth/Headers/DBAUTHRateLimitError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Auth/Headers/DBAUTHRateLimitReason.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Auth/Headers/DBAUTHRateLimitReason.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Auth/Headers/DBAUTHTokenFromOAuth1Arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Auth/Headers/DBAUTHTokenFromOAuth1Arg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Auth/Headers/DBAUTHTokenFromOAuth1Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Auth/Headers/DBAUTHTokenFromOAuth1Error.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Auth/Headers/DBAUTHTokenScopeError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Auth/Headers/DBAUTHTokenScopeError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Check/DBCheckObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Check/DBCheckObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Check/Headers/DBCHECKEchoArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Check/Headers/DBCHECKEchoArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Check/Headers/DBCHECKEchoResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Check/Headers/DBCHECKEchoResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Common/DBCommonObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Common/DBCommonObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Common/Headers/DBCOMMONPathRoot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Common/Headers/DBCOMMONPathRoot.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Common/Headers/DBCOMMONPathRootError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Common/Headers/DBCOMMONPathRootError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Common/Headers/DBCOMMONRootInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Common/Headers/DBCOMMONRootInfo.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Common/Headers/DBCOMMONTeamRootInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Common/Headers/DBCOMMONTeamRootInfo.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Common/Headers/DBCOMMONUserRootInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Common/Headers/DBCOMMONUserRootInfo.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Contacts/DBContactsObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Contacts/DBContactsObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/DBFilePropertiesObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/DBFilePropertiesObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/DBFileRequestsObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/DBFileRequestsObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/DBFilesObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/DBFilesObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESAddTagArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESAddTagArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESAddTagError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESAddTagError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESBaseTagError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESBaseTagError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESCommitInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESCommitInfo.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESContentSyncSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESContentSyncSetting.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESCreateFolderArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESCreateFolderArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESCreateFolderError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESCreateFolderError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESCreateFolderResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESCreateFolderResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDeleteArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDeleteArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDeleteBatchArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDeleteBatchArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDeleteBatchError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDeleteBatchError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDeleteBatchLaunch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDeleteBatchLaunch.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDeleteBatchResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDeleteBatchResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDeleteError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDeleteError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDeleteResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDeleteResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDeletedMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDeletedMetadata.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDimensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDimensions.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDownloadArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDownloadArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDownloadError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDownloadError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDownloadZipArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDownloadZipArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDownloadZipError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDownloadZipError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDownloadZipResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDownloadZipResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESExportArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESExportArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESExportError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESExportError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESExportInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESExportInfo.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESExportMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESExportMetadata.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESExportResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESExportResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESFileCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESFileCategory.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESFileLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESFileLock.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESFileLockContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESFileLockContent.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESFileLockMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESFileLockMetadata.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESFileMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESFileMetadata.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESFileOpsResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESFileOpsResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESFileSharingInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESFileSharingInfo.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESFileStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESFileStatus.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESFolderMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESFolderMetadata.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESFolderSharingInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESFolderSharingInfo.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetMetadataArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetMetadataArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetMetadataError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetMetadataError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetTagsArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetTagsArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetTagsResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetTagsResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGpsCoordinates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGpsCoordinates.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESHighlightSpan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESHighlightSpan.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESImportFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESImportFormat.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESListFolderArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESListFolderArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESListFolderError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESListFolderError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESListFolderResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESListFolderResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESListRevisionsArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESListRevisionsArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESListRevisionsError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESListRevisionsError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESListRevisionsMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESListRevisionsMode.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESLockConflictError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESLockConflictError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESLockFileArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESLockFileArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESLockFileBatchArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESLockFileBatchArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESLockFileError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESLockFileError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESLockFileResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESLockFileResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESLookupError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESLookupError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESMediaInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESMediaInfo.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESMediaMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESMediaMetadata.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESMetadata.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESMetadataV2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESMetadataV2.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESMoveBatchArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESMoveBatchArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESMoveIntoVaultError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESMoveIntoVaultError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESPaperContentError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESPaperContentError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESPaperCreateArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESPaperCreateArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESPaperCreateError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESPaperCreateError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESPaperCreateResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESPaperCreateResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESPaperUpdateArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESPaperUpdateArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESPaperUpdateError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESPaperUpdateError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESPaperUpdateResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESPaperUpdateResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESPathOrLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESPathOrLink.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESPathToTags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESPathToTags.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESPhotoMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESPhotoMetadata.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESPreviewArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESPreviewArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESPreviewError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESPreviewError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESPreviewResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESPreviewResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRelocationArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRelocationArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRelocationBatchArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRelocationBatchArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRelocationError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRelocationError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRelocationPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRelocationPath.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRelocationResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRelocationResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRemoveTagArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRemoveTagArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRemoveTagError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRemoveTagError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRestoreArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRestoreArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRestoreError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRestoreError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSaveUrlArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSaveUrlArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSaveUrlError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSaveUrlError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSaveUrlJobStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSaveUrlJobStatus.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSaveUrlResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSaveUrlResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSearchArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSearchArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSearchError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSearchError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSearchMatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSearchMatch.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSearchMatchType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSearchMatchType.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSearchMatchTypeV2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSearchMatchTypeV2.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSearchMatchV2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSearchMatchV2.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSearchMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSearchMode.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSearchOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSearchOptions.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSearchOrderBy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSearchOrderBy.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSearchResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSearchResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSearchV2Arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSearchV2Arg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSearchV2Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSearchV2Result.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSharedLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSharedLink.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSharedLinkFileInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSharedLinkFileInfo.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSharingInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSharingInfo.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSingleUserLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSingleUserLock.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSymlinkInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSymlinkInfo.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSyncSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSyncSetting.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSyncSettingArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSyncSettingArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSyncSettingsError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSyncSettingsError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESTag.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESThumbnailArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESThumbnailArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESThumbnailError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESThumbnailError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESThumbnailFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESThumbnailFormat.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESThumbnailMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESThumbnailMode.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESThumbnailSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESThumbnailSize.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESThumbnailV2Arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESThumbnailV2Arg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESThumbnailV2Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESThumbnailV2Error.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUnlockFileArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUnlockFileArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUnlockFileBatchArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUnlockFileBatchArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadSessionType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadSessionType.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadWriteFailed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadWriteFailed.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUserGeneratedTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUserGeneratedTag.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESVideoMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESVideoMetadata.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESWriteConflictError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESWriteConflictError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESWriteError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESWriteError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESWriteMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESWriteMode.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Openid/DBOpenidObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Openid/DBOpenidObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Openid/Headers/DBOPENIDOpenIdError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Openid/Headers/DBOPENIDOpenIdError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Openid/Headers/DBOPENIDUserInfoArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Openid/Headers/DBOPENIDUserInfoArgs.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Openid/Headers/DBOPENIDUserInfoError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Openid/Headers/DBOPENIDUserInfoError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Openid/Headers/DBOPENIDUserInfoResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Openid/Headers/DBOPENIDUserInfoResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Paper/DBPaperObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Paper/DBPaperObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Paper/Headers/DBPAPERAddMember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Paper/Headers/DBPAPERAddMember.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Paper/Headers/DBPAPERAddPaperDocUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Paper/Headers/DBPAPERAddPaperDocUser.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Paper/Headers/DBPAPERCursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Paper/Headers/DBPAPERCursor.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Paper/Headers/DBPAPERDocLookupError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Paper/Headers/DBPAPERDocLookupError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Paper/Headers/DBPAPERExportFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Paper/Headers/DBPAPERExportFormat.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Paper/Headers/DBPAPERFolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Paper/Headers/DBPAPERFolder.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Paper/Headers/DBPAPERImportFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Paper/Headers/DBPAPERImportFormat.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Paper/Headers/DBPAPERListPaperDocsArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Paper/Headers/DBPAPERListPaperDocsArgs.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Paper/Headers/DBPAPERPaperApiBaseError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Paper/Headers/DBPAPERPaperApiBaseError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Paper/Headers/DBPAPERPaperDocCreateArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Paper/Headers/DBPAPERPaperDocCreateArgs.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Paper/Headers/DBPAPERPaperDocExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Paper/Headers/DBPAPERPaperDocExport.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Paper/Headers/DBPAPERPaperDocUpdateArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Paper/Headers/DBPAPERPaperDocUpdateArgs.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Paper/Headers/DBPAPERRefPaperDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Paper/Headers/DBPAPERRefPaperDoc.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Paper/Headers/DBPAPERRemovePaperDocUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Paper/Headers/DBPAPERRemovePaperDocUser.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Paper/Headers/DBPAPERSharingPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Paper/Headers/DBPAPERSharingPolicy.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/SeenState/DBSeenStateObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/SeenState/DBSeenStateObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/DBSharingObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/DBSharingObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGAccessLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGAccessLevel.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGAddMember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGAddMember.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGFileAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGFileAction.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGFilePermission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGFilePermission.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGFolderAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGFolderAction.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGFolderPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGFolderPolicy.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGGroupInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGGroupInfo.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGInviteeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGInviteeInfo.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGJobError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGJobError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGJobStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGJobStatus.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGLinkAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGLinkAction.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGLinkAudience.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGLinkAudience.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGLinkExpiry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGLinkExpiry.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGLinkMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGLinkMetadata.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGLinkPassword.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGLinkPassword.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGLinkPermission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGLinkPermission.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGLinkSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGLinkSettings.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGListFilesArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGListFilesArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGMemberAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGMemberAction.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGMemberPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGMemberPolicy.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGMemberSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGMemberSelector.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGMembershipInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGMembershipInfo.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGMountFolderArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGMountFolderArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGShareFolderArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGShareFolderArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGSharePathError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGSharePathError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGTeamMemberInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGTeamMemberInfo.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGUnshareFileArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGUnshareFileArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGUserInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGUserInfo.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGVisibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Sharing/Headers/DBSHARINGVisibility.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/DBTeamObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/DBTeamObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMActiveWebSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMActiveWebSession.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMAdminTier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMAdminTier.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMApiApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMApiApp.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMBaseDfbReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMBaseDfbReport.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMBaseTeamFolderError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMBaseTeamFolderError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMCustomQuotaError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMCustomQuotaError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMCustomQuotaResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMCustomQuotaResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMCustomQuotaUsersArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMCustomQuotaUsersArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMDateRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMDateRange.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMDateRangeError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMDateRangeError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMDesktopClientSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMDesktopClientSession.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMDesktopPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMDesktopPlatform.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMDeviceSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMDeviceSession.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMDeviceSessionArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMDeviceSessionArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMDevicesActive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMDevicesActive.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMExcludedUsersListArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMExcludedUsersListArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMFeature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMFeature.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMFeatureValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMFeatureValue.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGetActivityReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGetActivityReport.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGetDevicesReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGetDevicesReport.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGetMembershipReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGetMembershipReport.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGetStorageReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGetStorageReport.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupAccessType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupAccessType.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupCreateArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupCreateArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupCreateError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupCreateError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupDeleteError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupDeleteError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupFullInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupFullInfo.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupMemberInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupMemberInfo.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupMemberSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupMemberSelector.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupMembersAddArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupMembersAddArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupMembersAddError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupMembersAddError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupMembersSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupMembersSelector.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupSelector.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupUpdateArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupUpdateArgs.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupUpdateError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupUpdateError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupsGetInfoItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupsGetInfoItem.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupsListArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupsListArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupsListResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupsListResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupsPollError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupsPollError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupsSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMGroupsSelector.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMIncludeMembersArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMIncludeMembersArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMLegalHoldPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMLegalHoldPolicy.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMLegalHoldStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMLegalHoldStatus.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMLegalHoldsError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMLegalHoldsError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMListMemberAppsArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMListMemberAppsArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMListTeamAppsArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMListTeamAppsArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMListTeamAppsError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMListTeamAppsError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMemberAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMemberAccess.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMemberAddArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMemberAddArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMemberAddArgBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMemberAddArgBase.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMemberAddResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMemberAddResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMemberAddV2Arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMemberAddV2Arg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMemberAddV2Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMemberAddV2Result.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMemberDevices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMemberDevices.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMemberLinkedApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMemberLinkedApps.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMemberProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMemberProfile.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMembersAddArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMembersAddArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMembersAddArgBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMembersAddArgBase.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMembersAddLaunch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMembersAddLaunch.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMembersAddV2Arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMembersAddV2Arg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMembersInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMembersInfo.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMembersListArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMembersListArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMembersListError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMembersListError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMembersListResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMembersListResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMembersRecoverArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMembersRecoverArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMembersRemoveArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMMembersRemoveArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMNamespaceMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMNamespaceMetadata.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMNamespaceType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMNamespaceType.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMRemovedStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMRemovedStatus.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMSetCustomQuotaArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMSetCustomQuotaArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMStorageBucket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMStorageBucket.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMTeamFolderIdArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMTeamFolderIdArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMTeamFolderListArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMTeamFolderListArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMTeamFolderStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMTeamFolderStatus.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMTeamGetInfoResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMTeamGetInfoResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMTeamMemberInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMTeamMemberInfo.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMTeamMemberInfoV2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMTeamMemberInfoV2.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMTeamMemberProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMTeamMemberProfile.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMTeamMemberRole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMTeamMemberRole.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMTeamMemberStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMTeamMemberStatus.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMUserAddResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMUserAddResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMUserDeleteResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMUserDeleteResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMUserResendResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMUserResendResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMUserSelectorArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMUserSelectorArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMUserSelectorError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMUserSelectorError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMUsersSelectorArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Team/Headers/DBTEAMUsersSelectorArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamCommon/DBTeamCommonObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamCommon/DBTeamCommonObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/DBTeamLogObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/DBTeamLogObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGAdminRole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGAdminRole.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGAppLogInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGAppLogInfo.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGCertificate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGCertificate.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGDeviceType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGDeviceType.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGEventType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGEventType.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGFileAddType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGFileAddType.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGFileLogInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGFileLogInfo.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGLabelType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGLabelType.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGLockStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGLockStatus.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGLoginMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGLoginMethod.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGLogoutType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGLogoutType.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGPassPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGPassPolicy.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGPathLogInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGPathLogInfo.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGPolicyType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGPolicyType.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGTeamDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGTeamDetails.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGTeamEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGTeamEvent.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGTeamLogInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGTeamLogInfo.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGTeamName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGTeamName.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGTimeUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGTimeUnit.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGUserLogInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamLog/Headers/DBTEAMLOGUserLogInfo.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamPolicies/DBTeamPoliciesObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/TeamPolicies/DBTeamPoliciesObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Users/DBUsersObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Users/DBUsersObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Users/Headers/DBUSERSAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Users/Headers/DBUSERSAccount.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Users/Headers/DBUSERSBasicAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Users/Headers/DBUSERSBasicAccount.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Users/Headers/DBUSERSFullAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Users/Headers/DBUSERSFullAccount.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Users/Headers/DBUSERSFullTeam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Users/Headers/DBUSERSFullTeam.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Users/Headers/DBUSERSGetAccountArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Users/Headers/DBUSERSGetAccountArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Users/Headers/DBUSERSGetAccountError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Users/Headers/DBUSERSGetAccountError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Users/Headers/DBUSERSName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Users/Headers/DBUSERSName.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Users/Headers/DBUSERSSpaceAllocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Users/Headers/DBUSERSSpaceAllocation.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Users/Headers/DBUSERSSpaceUsage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Users/Headers/DBUSERSSpaceUsage.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Users/Headers/DBUSERSTeam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Users/Headers/DBUSERSTeam.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Users/Headers/DBUSERSUserFeature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Users/Headers/DBUSERSUserFeature.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/UsersCommon/DBUsersCommonObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/UsersCommon/DBUsersCommonObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Client/DBAppBaseClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Client/DBAppBaseClient.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Client/DBAppBaseClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Client/DBAppBaseClient.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Client/DBTeamBaseClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Client/DBTeamBaseClient.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Client/DBTeamBaseClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Client/DBTeamBaseClient.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Client/DBUserBaseClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Client/DBUserBaseClient.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Client/DBUserBaseClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Client/DBUserBaseClient.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/DBSDKImportsGenerated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/DBSDKImportsGenerated.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Resources/DBSerializableProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Resources/DBSerializableProtocol.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Resources/DBStoneBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Resources/DBStoneBase.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Resources/DBStoneBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Resources/DBStoneBase.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Resources/DBStoneSerializers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Resources/DBStoneSerializers.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Resources/DBStoneSerializers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Resources/DBStoneSerializers.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Resources/DBStoneValidators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Resources/DBStoneValidators.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Resources/DBStoneValidators.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Resources/DBStoneValidators.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBACCOUNTUserAuthRoutes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBACCOUNTUserAuthRoutes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBACCOUNTUserAuthRoutes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBACCOUNTUserAuthRoutes.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBAUTHAppAuthRoutes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBAUTHAppAuthRoutes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBAUTHAppAuthRoutes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBAUTHAppAuthRoutes.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBAUTHUserAuthRoutes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBAUTHUserAuthRoutes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBAUTHUserAuthRoutes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBAUTHUserAuthRoutes.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBCHECKAppAuthRoutes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBCHECKAppAuthRoutes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBCHECKAppAuthRoutes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBCHECKAppAuthRoutes.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBCHECKUserAuthRoutes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBCHECKUserAuthRoutes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBCHECKUserAuthRoutes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBCHECKUserAuthRoutes.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBCONTACTSUserAuthRoutes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBCONTACTSUserAuthRoutes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBCONTACTSUserAuthRoutes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBCONTACTSUserAuthRoutes.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILEPROPERTIESTeamAuthRoutes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILEPROPERTIESTeamAuthRoutes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILEPROPERTIESTeamAuthRoutes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILEPROPERTIESTeamAuthRoutes.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILEPROPERTIESUserAuthRoutes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILEPROPERTIESUserAuthRoutes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILEPROPERTIESUserAuthRoutes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILEPROPERTIESUserAuthRoutes.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILEREQUESTSUserAuthRoutes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILEREQUESTSUserAuthRoutes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILEREQUESTSUserAuthRoutes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILEREQUESTSUserAuthRoutes.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILESAppAuthRoutes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILESAppAuthRoutes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILESAppAuthRoutes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILESAppAuthRoutes.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILESUserAuthRoutes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILESUserAuthRoutes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILESUserAuthRoutes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILESUserAuthRoutes.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBOPENIDUserAuthRoutes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBOPENIDUserAuthRoutes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBOPENIDUserAuthRoutes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBOPENIDUserAuthRoutes.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBPAPERUserAuthRoutes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBPAPERUserAuthRoutes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBPAPERUserAuthRoutes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBPAPERUserAuthRoutes.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBSHARINGAppAuthRoutes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBSHARINGAppAuthRoutes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBSHARINGAppAuthRoutes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBSHARINGAppAuthRoutes.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBSHARINGUserAuthRoutes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBSHARINGUserAuthRoutes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBSHARINGUserAuthRoutes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBSHARINGUserAuthRoutes.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBTEAMLOGTeamAuthRoutes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBTEAMLOGTeamAuthRoutes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBTEAMLOGTeamAuthRoutes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBTEAMLOGTeamAuthRoutes.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBTEAMTeamAuthRoutes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBTEAMTeamAuthRoutes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBTEAMTeamAuthRoutes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBTEAMTeamAuthRoutes.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBUSERSUserAuthRoutes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBUSERSUserAuthRoutes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBUSERSUserAuthRoutes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBUSERSUserAuthRoutes.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBACCOUNTRouteObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBACCOUNTRouteObjects.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBACCOUNTRouteObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBACCOUNTRouteObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBAUTHRouteObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBAUTHRouteObjects.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBAUTHRouteObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBAUTHRouteObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBCHECKRouteObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBCHECKRouteObjects.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBCHECKRouteObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBCHECKRouteObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBCONTACTSRouteObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBCONTACTSRouteObjects.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBCONTACTSRouteObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBCONTACTSRouteObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBFILEREQUESTSRouteObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBFILEREQUESTSRouteObjects.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBFILEREQUESTSRouteObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBFILEREQUESTSRouteObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBFILESRouteObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBFILESRouteObjects.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBFILESRouteObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBFILESRouteObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBOPENIDRouteObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBOPENIDRouteObjects.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBOPENIDRouteObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBOPENIDRouteObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBPAPERRouteObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBPAPERRouteObjects.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBPAPERRouteObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBPAPERRouteObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBSHARINGRouteObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBSHARINGRouteObjects.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBSHARINGRouteObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBSHARINGRouteObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBTEAMLOGRouteObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBTEAMLOGRouteObjects.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBTEAMLOGRouteObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBTEAMLOGRouteObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBTEAMRouteObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBTEAMRouteObjects.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBTEAMRouteObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBTEAMRouteObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBUSERSRouteObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBUSERSRouteObjects.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBUSERSRouteObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBUSERSRouteObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/DBAppClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/DBAppClient.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/DBAppClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/DBAppClient.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/DBClientsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/DBClientsManager.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/DBClientsManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/DBClientsManager.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/DBSDKImportsShared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/DBSDKImportsShared.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/DBTeamClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/DBTeamClient.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/DBTeamClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/DBTeamClient.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/DBUserClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/DBUserClient.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/DBUserClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/DBUserClient.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBDelegate.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBGlobalErrorResponseHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBGlobalErrorResponseHandler.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBGlobalErrorResponseHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBGlobalErrorResponseHandler.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBHandlerTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBHandlerTypes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBRequestErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBRequestErrors.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBRequestErrors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBRequestErrors.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBSDKReachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBSDKReachability.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBSessionData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBSessionData.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTasks.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTasks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTasks.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTasksImpl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTasksImpl.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTasksStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTasksStorage.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTasksStorage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTasksStorage.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportBaseClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportBaseClient.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportBaseClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportBaseClient.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportBaseConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportBaseConfig.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportBaseConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportBaseConfig.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportBaseHostnameConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportBaseHostnameConfig.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportBaseHostnameConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportBaseHostnameConfig.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportClientProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportClientProtocol.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportDefaultClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportDefaultClient.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportDefaultClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportDefaultClient.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportDefaultConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportDefaultConfig.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportDefaultConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportDefaultConfig.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBURLSessionTaskWithTokenRefresh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBURLSessionTaskWithTokenRefresh.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBAccessToken+NSSecureCoding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBAccessToken+NSSecureCoding.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBAccessTokenProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBAccessTokenProvider.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBAccessTokenProviderImpl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBAccessTokenProviderImpl.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBLoadingStatusDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBLoadingStatusDelegate.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthConstants.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthManager.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthManager.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthPKCESession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthPKCESession.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthResult.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthResultCompletion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthResultCompletion.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthTokenRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthTokenRequest.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthUtils.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBSDKKeychain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBSDKKeychain.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBSDKKeychain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBSDKKeychain.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBScopeRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBScopeRequest.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBScopeRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBScopeRequest.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBSharedApplicationProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBSharedApplicationProtocol.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBChunkInputStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBChunkInputStream.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBCustomDatatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBCustomDatatypes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBCustomDatatypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBCustomDatatypes.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBCustomRoutes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBCustomRoutes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBCustomRoutes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBCustomRoutes.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBCustomTasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBCustomTasks.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBCustomTasks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBCustomTasks.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBSDKConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBSDKConstants.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBSDKConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBSDKConstants.m -------------------------------------------------------------------------------- /TestObjectiveDropbox/IntegrationTests/TestAppType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/IntegrationTests/TestAppType.h -------------------------------------------------------------------------------- /TestObjectiveDropbox/IntegrationTests/TestClasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/IntegrationTests/TestClasses.h -------------------------------------------------------------------------------- /TestObjectiveDropbox/IntegrationTests/TestClasses.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/IntegrationTests/TestClasses.m -------------------------------------------------------------------------------- /TestObjectiveDropbox/IntegrationTests/TestData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/IntegrationTests/TestData.h -------------------------------------------------------------------------------- /TestObjectiveDropbox/IntegrationTests/TestData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/IntegrationTests/TestData.m -------------------------------------------------------------------------------- /TestObjectiveDropbox/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/Podfile -------------------------------------------------------------------------------- /TestObjectiveDropbox/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/Podfile.lock -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_iOS/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_iOS/AppDelegate.h -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_iOS/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_iOS/AppDelegate.m -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_iOS/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_iOS/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_iOS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_iOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_iOS/Info.plist -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_iOS/TestObjectiveDropbox_iOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_iOS/TestObjectiveDropbox_iOS.entitlements -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_iOS/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_iOS/ViewController.h -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_iOS/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_iOS/ViewController.m -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_iOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_iOS/main.m -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_iOSTests/FileRoutesTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_iOSTests/FileRoutesTests.m -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_iOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_iOSTests/Info.plist -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_iOSTests/TeamRoutesTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_iOSTests/TeamRoutesTests.m -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_iOSTests/TestAsciiEncoding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_iOSTests/TestAsciiEncoding.m -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_iOSTests/TestAuthTokenGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_iOSTests/TestAuthTokenGenerator.h -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_iOSTests/TestAuthTokenGenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_iOSTests/TestAuthTokenGenerator.m -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_macOS/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_macOS/AppDelegate.h -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_macOS/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_macOS/AppDelegate.m -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_macOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_macOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_macOS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_macOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_macOS/Info.plist -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_macOS/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_macOS/ViewController.h -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_macOS/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_macOS/ViewController.m -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_macOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_macOS/main.m -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_macOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_macOSTests/Info.plist -------------------------------------------------------------------------------- /generate_base_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/generate_base_client.py -------------------------------------------------------------------------------- /update_repo_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/update_repo_check.sh -------------------------------------------------------------------------------- /update_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/dropbox-sdk-obj-c/HEAD/update_version.sh --------------------------------------------------------------------------------