├── .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 ├── clang-format ├── 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 │ └── 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 │ │ │ │ ├── DBFILESCommitInfoWithProperties.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 │ │ │ │ ├── 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 │ │ │ │ ├── DBFILESUploadError.h │ │ │ │ ├── DBFILESUploadErrorWithProperties.h │ │ │ │ ├── DBFILESUploadSessionAppendArg.h │ │ │ │ ├── DBFILESUploadSessionCursor.h │ │ │ │ ├── DBFILESUploadSessionFinishArg.h │ │ │ │ ├── DBFILESUploadSessionFinishBatchArg.h │ │ │ │ ├── DBFILESUploadSessionFinishBatchJobStatus.h │ │ │ │ ├── DBFILESUploadSessionFinishBatchLaunch.h │ │ │ │ ├── DBFILESUploadSessionFinishBatchResult.h │ │ │ │ ├── DBFILESUploadSessionFinishBatchResultEntry.h │ │ │ │ ├── DBFILESUploadSessionFinishError.h │ │ │ │ ├── DBFILESUploadSessionLookupError.h │ │ │ │ ├── DBFILESUploadSessionOffsetError.h │ │ │ │ ├── DBFILESUploadSessionStartArg.h │ │ │ │ ├── DBFILESUploadSessionStartError.h │ │ │ │ ├── DBFILESUploadSessionStartResult.h │ │ │ │ ├── DBFILESUploadSessionType.h │ │ │ │ ├── DBFILESUploadWriteFailed.h │ │ │ │ ├── DBFILESUserGeneratedTag.h │ │ │ │ ├── DBFILESVideoMetadata.h │ │ │ │ ├── DBFILESWriteConflictError.h │ │ │ │ ├── DBFILESWriteError.h │ │ │ │ └── DBFILESWriteMode.h │ │ ├── SecondaryEmails │ │ │ ├── DBSecondaryEmailsObjects.m │ │ │ └── Headers │ │ │ │ └── DBSECONDARYEMAILSSecondaryEmail.h │ │ ├── SeenState │ │ │ ├── DBSeenStateObjects.m │ │ │ └── Headers │ │ │ │ └── DBSEENSTATEPlatformType.h │ │ └── UsersCommon │ │ │ ├── DBUsersCommonObjects.m │ │ │ └── Headers │ │ │ └── DBUSERSCOMMONAccountType.h │ ├── Client │ │ ├── DBAppBaseClient.h │ │ ├── DBAppBaseClient.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 │ │ └── 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 │ └── Handwritten │ ├── DBAppClient.h │ ├── DBAppClient.m │ ├── DBClientsManager.h │ ├── DBClientsManager.m │ ├── DBSDKImportsShared.h │ ├── 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 │ ├── 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/Blankwonder/dropbox-sdk-obj-c/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/.gitmodules -------------------------------------------------------------------------------- /.jazzy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/.jazzy.json -------------------------------------------------------------------------------- /Examples/DBRoulette/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/README.md -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/CarthageProject/DBRoulette/Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/CarthageProject/DBRoulette/Cartfile -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/CarthageProject/DBRoulette/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/CarthageProject/DBRoulette/DBRoulette/AppDelegate.m -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/CarthageProject/DBRoulette/DBRoulette/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/CarthageProject/DBRoulette/DBRoulette/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/CarthageProject/DBRoulette/DBRoulette/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/CocoaPodsProject/DBRoulette/DBRoulette/AppDelegate.m -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/CocoaPodsProject/DBRoulette/DBRoulette/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/CocoaPodsProject/DBRoulette/DBRoulette/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/CocoaPodsProject/DBRoulette/DBRoulette/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/CocoaPodsProject/DBRoulette/Podfile.lock -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/SubprojectProject/DBRoulette/Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/SubprojectProject/DBRoulette/Cartfile -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/SubprojectProject/DBRoulette/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/SubprojectProject/DBRoulette/DBRoulette/AppDelegate.m -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/SubprojectProject/DBRoulette/DBRoulette/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/SubprojectProject/DBRoulette/DBRoulette/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/DBRoulette/iOS/SubprojectProject/DBRoulette/DBRoulette/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/iOS/SubprojectProject/DBRoulette/DBRoulette/main.m -------------------------------------------------------------------------------- /Examples/DBRoulette/macOS/CarthageProject/DBRoulette/Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/macOS/CarthageProject/DBRoulette/Cartfile -------------------------------------------------------------------------------- /Examples/DBRoulette/macOS/CarthageProject/DBRoulette/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/macOS/CarthageProject/DBRoulette/DBRoulette/AppDelegate.m -------------------------------------------------------------------------------- /Examples/DBRoulette/macOS/CarthageProject/DBRoulette/DBRoulette/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/macOS/CarthageProject/DBRoulette/DBRoulette/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/DBRoulette/macOS/CarthageProject/DBRoulette/DBRoulette/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/Examples/DBRoulette/macOS/CarthageProject/DBRoulette/DBRoulette/main.m -------------------------------------------------------------------------------- /Format/UmbrellaHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Format/UmbrellaHeader.h -------------------------------------------------------------------------------- /Format/clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Format/clang-format -------------------------------------------------------------------------------- /Format/format_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Format/format_files.sh -------------------------------------------------------------------------------- /Format/generate_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Format/generate_docs.sh -------------------------------------------------------------------------------- /Format/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Format/jazzy.css -------------------------------------------------------------------------------- /Format/jazzy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Format/jazzy.json -------------------------------------------------------------------------------- /Images/DBRouletteAuthView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Images/DBRouletteAuthView.png -------------------------------------------------------------------------------- /Images/DBRouletteAuthViewMacOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Images/DBRouletteAuthViewMacOS.png -------------------------------------------------------------------------------- /Images/DBRouletteView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Images/DBRouletteView.png -------------------------------------------------------------------------------- /Images/DBRouletteViewMacOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Images/DBRouletteViewMacOS.png -------------------------------------------------------------------------------- /Images/InfoPlistExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Images/InfoPlistExample.png -------------------------------------------------------------------------------- /Images/OAuthFlowApproval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Images/OAuthFlowApproval.png -------------------------------------------------------------------------------- /Images/OAuthFlowInit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Images/OAuthFlowInit.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/LICENSE -------------------------------------------------------------------------------- /ObjectiveDropboxOfficial.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/ObjectiveDropboxOfficial.podspec -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/README.md -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/DBClientsManager+Protected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/DBClientsManager+Protected.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBDelegate.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBGlobalErrorResponseHandler+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBGlobalErrorResponseHandler+Internal.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBHandlerTypesInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBHandlerTypesInternal.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBSDKReachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBSDKReachability.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBSessionData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBSessionData.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBTasks+Protected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBTasks+Protected.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBTasksImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBTasksImpl.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBTransportBaseClient+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBTransportBaseClient+Internal.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBURLSessionTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBURLSessionTask.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBURLSessionTaskResponseBlockWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBURLSessionTaskResponseBlockWrapper.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBURLSessionTaskWithTokenRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/Networking/DBURLSessionTaskWithTokenRefresh.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/OAuth/DBAccessToken+NSSecureCoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/OAuth/DBAccessTokenProvider+Internal.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/OAuth/DBOAuthConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/OAuth/DBOAuthConstants.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/OAuth/DBOAuthManager+Protected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/OAuth/DBOAuthManager+Protected.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/OAuth/DBOAuthPKCESession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/OAuth/DBOAuthPKCESession.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/OAuth/DBOAuthTokenRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/OAuth/DBOAuthTokenRequest.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/OAuth/DBOAuthUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/OAuth/DBOAuthUtils.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/OAuth/DBScopeRequest+Protected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/OAuth/DBScopeRequest+Protected.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/Resources/DBChunkInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/Resources/DBChunkInputStream.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Internal/Resources/DBSDKSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Internal/Resources/DBSDKSystem.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/PlatformInternal/iOS/DBLoadingViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/PlatformInternal/iOS/DBLoadingViewController.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Umbrella/ObjectiveDropboxOfficial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Umbrella/ObjectiveDropboxOfficial.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Headers/Umbrella/ObjectiveDropboxOfficialLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Headers/Umbrella/ObjectiveDropboxOfficialLib.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/ObjectiveDropboxOfficial.xcodeproj/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/ObjectiveDropboxOfficial.xcodeproj/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/ObjectiveDropboxOfficial.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/ObjectiveDropboxOfficial.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/ObjectiveDropboxOfficial.xcodeproj/xcshareddata/xcschemes/ObjectiveDropboxOfficial iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/ObjectiveDropboxOfficial.xcodeproj/xcshareddata/xcschemes/ObjectiveDropboxOfficial iOS.xcscheme -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/ObjectiveDropboxOfficial.xcodeproj/xcshareddata/xcschemes/ObjectiveDropboxOfficial macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/ObjectiveDropboxOfficial.xcodeproj/xcshareddata/xcschemes/ObjectiveDropboxOfficial macOS.xcscheme -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/DBClientsManager+MobileAuth-iOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/DBClientsManager+MobileAuth-iOS.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/DBClientsManager+MobileAuth-iOS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/DBClientsManager+MobileAuth-iOS.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/DBLoadingViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/DBLoadingViewController.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/DBOAuthMobile-iOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/DBSDKImports-iOS.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/Info.plist -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/OfficialPartners/OpenWith/DBOfficialAppConnector-iOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/OfficialPartners/OpenWith/DBOfficialAppConnector-iOS.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/OfficialPartners/OpenWith/DBOfficialAppConnector-iOS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/OfficialPartners/OpenWith/DBOfficialAppConnector-iOS.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/OfficialPartners/OpenWith/DBOpenWithInfo-iOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/OfficialPartners/OpenWith/DBOpenWithInfo-iOS.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/OfficialPartners/OpenWith/DBOpenWithInfo-iOS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/OfficialPartners/OpenWith/DBOpenWithInfo-iOS.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_macOS/DBClientsManager+DesktopAuth-macOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_macOS/DBClientsManager+DesktopAuth-macOS.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_macOS/DBClientsManager+DesktopAuth-macOS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_macOS/DBClientsManager+DesktopAuth-macOS.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_macOS/DBOAuthDesktop-macOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_macOS/DBSDKImports-macOS.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_macOS/Info.plist -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Account/DBAccountObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Account/Headers/DBACCOUNTPhotoSourceArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Account/Headers/DBACCOUNTSetProfilePhotoArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Account/Headers/DBACCOUNTSetProfilePhotoArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Account/Headers/DBACCOUNTSetProfilePhotoError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Account/Headers/DBACCOUNTSetProfilePhotoError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Account/Headers/DBACCOUNTSetProfilePhotoResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Account/Headers/DBACCOUNTSetProfilePhotoResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Async/DBAsyncObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Auth/Headers/DBAUTHAuthError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Auth/Headers/DBAUTHInvalidAccountTypeError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Auth/Headers/DBAUTHInvalidAccountTypeError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Auth/Headers/DBAUTHPaperAccessError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Auth/Headers/DBAUTHTokenFromOAuth1Error.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Auth/Headers/DBAUTHTokenFromOAuth1Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Auth/Headers/DBAUTHTokenFromOAuth1Result.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Auth/Headers/DBAUTHTokenScopeError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Contacts/DBContactsObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Contacts/Headers/DBCONTACTSDeleteManualContactsArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Contacts/Headers/DBCONTACTSDeleteManualContactsArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Contacts/Headers/DBCONTACTSDeleteManualContactsError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Contacts/Headers/DBCONTACTSDeleteManualContactsError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/DBFilePropertiesObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/DBFilePropertiesObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESAddPropertiesArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESAddPropertiesArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESAddPropertiesError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESAddPropertiesError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESAddTemplateArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESAddTemplateArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESAddTemplateResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESAddTemplateResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESGetTemplateArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESGetTemplateArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESGetTemplateResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESGetTemplateResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESInvalidPropertyGroupError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESInvalidPropertyGroupError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESListTemplateResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESListTemplateResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESLogicalOperator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESLogicalOperator.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESLookUpPropertiesError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESLookUpPropertiesError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESLookupError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESLookupError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESModifyTemplateError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESModifyTemplateError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESOverwritePropertyGroupArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESOverwritePropertyGroupArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESPropertiesError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESPropertiesError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESPropertiesSearchArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESPropertiesSearchArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESPropertiesSearchContinueArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESPropertiesSearchContinueArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESPropertiesSearchContinueError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESPropertiesSearchContinueError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESPropertiesSearchError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESPropertiesSearchError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESPropertiesSearchMatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESPropertiesSearchMatch.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESPropertiesSearchMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESPropertiesSearchMode.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESPropertiesSearchQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESPropertiesSearchQuery.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESPropertiesSearchResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESPropertiesSearchResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESPropertyField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESPropertyField.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESPropertyFieldTemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESPropertyFieldTemplate.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESPropertyGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESPropertyGroup.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESPropertyGroupTemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESPropertyGroupTemplate.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESPropertyGroupUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESPropertyGroupUpdate.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESPropertyType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESPropertyType.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESRemovePropertiesArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESRemovePropertiesArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESRemovePropertiesError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESRemovePropertiesError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESRemoveTemplateArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESRemoveTemplateArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESTemplateError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESTemplateError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESTemplateFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESTemplateFilter.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESTemplateFilterBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESTemplateFilterBase.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESTemplateOwnerType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESTemplateOwnerType.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESUpdatePropertiesArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESUpdatePropertiesArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESUpdatePropertiesError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESUpdatePropertiesError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESUpdateTemplateArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESUpdateTemplateArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESUpdateTemplateResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileProperties/Headers/DBFILEPROPERTIESUpdateTemplateResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/DBFileRequestsObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/DBFileRequestsObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSCountFileRequestsError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSCountFileRequestsError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSCountFileRequestsResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSCountFileRequestsResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSCreateFileRequestArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSCreateFileRequestArgs.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSCreateFileRequestError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSCreateFileRequestError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSDeleteAllClosedFileRequestsError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSDeleteAllClosedFileRequestsError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSDeleteAllClosedFileRequestsResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSDeleteAllClosedFileRequestsResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSDeleteFileRequestArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSDeleteFileRequestArgs.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSDeleteFileRequestError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSDeleteFileRequestError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSDeleteFileRequestsResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSDeleteFileRequestsResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSFileRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSFileRequest.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSFileRequestDeadline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSFileRequestDeadline.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSFileRequestError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSFileRequestError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSGeneralFileRequestsError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSGeneralFileRequestsError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSGetFileRequestArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSGetFileRequestArgs.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSGetFileRequestError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSGetFileRequestError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSGracePeriod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSGracePeriod.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSListFileRequestsArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSListFileRequestsArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSListFileRequestsContinueArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSListFileRequestsContinueArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSListFileRequestsContinueError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSListFileRequestsContinueError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSListFileRequestsError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSListFileRequestsError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSListFileRequestsResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSListFileRequestsResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSListFileRequestsV2Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSListFileRequestsV2Result.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSUpdateFileRequestArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSUpdateFileRequestArgs.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSUpdateFileRequestDeadline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSUpdateFileRequestDeadline.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSUpdateFileRequestError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSUpdateFileRequestError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/DBFilesObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESAddTagError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESAlphaGetMetadataArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESAlphaGetMetadataArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESAlphaGetMetadataError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESAlphaGetMetadataError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESBaseTagError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESCommitInfo.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESCommitInfoWithProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESCommitInfoWithProperties.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESContentSyncSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESContentSyncSetting.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESContentSyncSettingArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESContentSyncSettingArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESCreateFolderArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESCreateFolderArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESCreateFolderBatchArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESCreateFolderBatchArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESCreateFolderBatchError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESCreateFolderBatchError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESCreateFolderBatchJobStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESCreateFolderBatchJobStatus.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESCreateFolderBatchLaunch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESCreateFolderBatchLaunch.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESCreateFolderBatchResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESCreateFolderBatchResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESCreateFolderBatchResultEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESCreateFolderBatchResultEntry.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESCreateFolderEntryError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESCreateFolderEntryError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESCreateFolderEntryResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESCreateFolderEntryResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESCreateFolderError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDeleteBatchError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDeleteBatchJobStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDeleteBatchJobStatus.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDeleteBatchLaunch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDeleteBatchResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDeleteBatchResultData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDeleteBatchResultData.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDeleteBatchResultEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDeleteBatchResultEntry.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESDeleteError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESFolderSharingInfo.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetCopyReferenceArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetCopyReferenceArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetCopyReferenceError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetCopyReferenceError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetCopyReferenceResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetCopyReferenceResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetMetadataArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetTagsResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetTemporaryLinkArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetTemporaryLinkArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetTemporaryLinkError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetTemporaryLinkError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetTemporaryLinkResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetTemporaryLinkResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetTemporaryUploadLinkArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetTemporaryUploadLinkArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetTemporaryUploadLinkResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetTemporaryUploadLinkResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetThumbnailBatchArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetThumbnailBatchArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetThumbnailBatchError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetThumbnailBatchError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetThumbnailBatchResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetThumbnailBatchResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetThumbnailBatchResultData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetThumbnailBatchResultData.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetThumbnailBatchResultEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGetThumbnailBatchResultEntry.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESGpsCoordinates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESListFolderArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESListFolderContinueArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESListFolderContinueArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESListFolderContinueError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESListFolderContinueError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESListFolderError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESListFolderError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESListFolderGetLatestCursorResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESListFolderGetLatestCursorResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESListFolderLongpollArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESListFolderLongpollArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESListFolderLongpollError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESListFolderLongpollError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESListFolderLongpollResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESListFolderLongpollResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESListFolderResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESListRevisionsMode.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESListRevisionsResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESListRevisionsResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESLockConflictError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESLockFileBatchArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESLockFileBatchResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESLockFileBatchResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESLockFileError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESLockFileResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESLockFileResultEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESLockFileResultEntry.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESLookupError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESMetadataV2.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESMinimalFileLinkMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESMinimalFileLinkMetadata.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESMoveBatchArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESPaperCreateResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESPaperDocUpdatePolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESPaperDocUpdatePolicy.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESPaperUpdateArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRelocationBatchArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRelocationBatchArgBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRelocationBatchArgBase.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRelocationBatchError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRelocationBatchError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRelocationBatchErrorEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRelocationBatchErrorEntry.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRelocationBatchJobStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRelocationBatchJobStatus.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRelocationBatchLaunch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRelocationBatchLaunch.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRelocationBatchResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRelocationBatchResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRelocationBatchResultData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRelocationBatchResultData.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRelocationBatchResultEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRelocationBatchResultEntry.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRelocationBatchV2JobStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRelocationBatchV2JobStatus.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRelocationBatchV2Launch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRelocationBatchV2Launch.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRelocationBatchV2Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRelocationBatchV2Result.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRelocationError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESRestoreError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSaveCopyReferenceArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSaveCopyReferenceArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSaveCopyReferenceError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSaveCopyReferenceError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSaveCopyReferenceResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSaveCopyReferenceResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSaveUrlArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSearchMatch.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSearchMatchFieldOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSearchMatchFieldOptions.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSearchMatchType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSearchV2Arg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSearchV2ContinueArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSearchV2ContinueArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESSearchV2Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUnlockFileBatchArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadErrorWithProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadErrorWithProperties.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadSessionAppendArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadSessionAppendArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadSessionCursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadSessionCursor.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadSessionFinishArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadSessionFinishArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadSessionFinishBatchArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadSessionFinishBatchArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadSessionFinishBatchJobStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadSessionFinishBatchJobStatus.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadSessionFinishBatchLaunch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadSessionFinishBatchLaunch.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadSessionFinishBatchResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadSessionFinishBatchResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadSessionFinishBatchResultEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadSessionFinishBatchResultEntry.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadSessionFinishError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadSessionFinishError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadSessionLookupError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadSessionLookupError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadSessionOffsetError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadSessionOffsetError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadSessionStartArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadSessionStartArg.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadSessionStartError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadSessionStartError.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadSessionStartResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadSessionStartResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESUploadSessionType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Files/Headers/DBFILESWriteMode.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/SecondaryEmails/DBSecondaryEmailsObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/SecondaryEmails/DBSecondaryEmailsObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/SecondaryEmails/Headers/DBSECONDARYEMAILSSecondaryEmail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/SecondaryEmails/Headers/DBSECONDARYEMAILSSecondaryEmail.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/SeenState/DBSeenStateObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/SeenState/DBSeenStateObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/SeenState/Headers/DBSEENSTATEPlatformType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/SeenState/Headers/DBSEENSTATEPlatformType.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/UsersCommon/DBUsersCommonObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/UsersCommon/DBUsersCommonObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/UsersCommon/Headers/DBUSERSCOMMONAccountType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/UsersCommon/Headers/DBUSERSCOMMONAccountType.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Client/DBAppBaseClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Client/DBAppBaseClient.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Client/DBAppBaseClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Client/DBAppBaseClient.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Client/DBUserBaseClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Client/DBUserBaseClient.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Client/DBUserBaseClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Client/DBUserBaseClient.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/DBSDKImportsGenerated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/DBSDKImportsGenerated.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Resources/DBSerializableProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Resources/DBSerializableProtocol.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Resources/DBStoneBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Resources/DBStoneBase.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Resources/DBStoneBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Resources/DBStoneBase.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Resources/DBStoneSerializers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Resources/DBStoneSerializers.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Resources/DBStoneSerializers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Resources/DBStoneSerializers.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Resources/DBStoneValidators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Resources/DBStoneValidators.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Resources/DBStoneValidators.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Resources/DBStoneValidators.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBACCOUNTUserAuthRoutes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBACCOUNTUserAuthRoutes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBACCOUNTUserAuthRoutes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBACCOUNTUserAuthRoutes.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBAUTHAppAuthRoutes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBAUTHAppAuthRoutes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBAUTHAppAuthRoutes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBAUTHAppAuthRoutes.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBAUTHUserAuthRoutes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBAUTHUserAuthRoutes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBAUTHUserAuthRoutes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBAUTHUserAuthRoutes.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBCHECKAppAuthRoutes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBCHECKAppAuthRoutes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBCHECKAppAuthRoutes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBCHECKAppAuthRoutes.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBCHECKUserAuthRoutes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBCHECKUserAuthRoutes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBCHECKUserAuthRoutes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBCHECKUserAuthRoutes.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBCONTACTSUserAuthRoutes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBCONTACTSUserAuthRoutes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBCONTACTSUserAuthRoutes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBCONTACTSUserAuthRoutes.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILEPROPERTIESTeamAuthRoutes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILEPROPERTIESTeamAuthRoutes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILEPROPERTIESTeamAuthRoutes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILEPROPERTIESTeamAuthRoutes.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILEPROPERTIESUserAuthRoutes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILEPROPERTIESUserAuthRoutes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILEPROPERTIESUserAuthRoutes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILEPROPERTIESUserAuthRoutes.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILEREQUESTSUserAuthRoutes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILEREQUESTSUserAuthRoutes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILEREQUESTSUserAuthRoutes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILEREQUESTSUserAuthRoutes.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILESAppAuthRoutes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILESAppAuthRoutes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILESAppAuthRoutes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILESAppAuthRoutes.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILESUserAuthRoutes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILESUserAuthRoutes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILESUserAuthRoutes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/DBFILESUserAuthRoutes.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBACCOUNTRouteObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBCONTACTSRouteObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBFILEPROPERTIESRouteObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBFILEPROPERTIESRouteObjects.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBFILEPROPERTIESRouteObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBFILEPROPERTIESRouteObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBFILEREQUESTSRouteObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/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/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Generated/Routes/RouteObjects/DBFILESRouteObjects.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/DBAppClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/DBAppClient.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/DBAppClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/DBAppClient.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/DBClientsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/DBClientsManager.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/DBClientsManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/DBClientsManager.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/DBSDKImportsShared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/DBSDKImportsShared.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/DBUserClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/DBUserClient.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/DBUserClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/DBUserClient.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBDelegate.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBGlobalErrorResponseHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBGlobalErrorResponseHandler.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBGlobalErrorResponseHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBGlobalErrorResponseHandler.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBHandlerTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBHandlerTypes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBRequestErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBRequestErrors.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBRequestErrors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBRequestErrors.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBSDKReachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBSDKReachability.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBSessionData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBSessionData.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTasks.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTasks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTasks.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTasksImpl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTasksImpl.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTasksStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTasksStorage.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTasksStorage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTasksStorage.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportBaseClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportBaseClient.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportBaseClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportBaseClient.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportBaseConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportBaseConfig.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportBaseConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportBaseConfig.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportBaseHostnameConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportBaseHostnameConfig.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportBaseHostnameConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportBaseHostnameConfig.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportClientProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportClientProtocol.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportDefaultClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportDefaultClient.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportDefaultClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportDefaultClient.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportDefaultConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportDefaultConfig.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportDefaultConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBTransportDefaultConfig.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBURLSessionTaskResponseBlockWrapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBURLSessionTaskResponseBlockWrapper.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBURLSessionTaskWithTokenRefresh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Networking/DBURLSessionTaskWithTokenRefresh.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBAccessToken+NSSecureCoding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBAccessToken+NSSecureCoding.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBAccessTokenProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBAccessTokenProvider.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBAccessTokenProviderImpl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBAccessTokenProviderImpl.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBLoadingStatusDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBLoadingStatusDelegate.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthConstants.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthManager.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthManager.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthPKCESession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthPKCESession.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthResult.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthResult.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthResultCompletion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthResultCompletion.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthTokenRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthTokenRequest.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthUtils.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBSDKKeychain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBSDKKeychain.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBSDKKeychain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBSDKKeychain.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBScopeRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBScopeRequest.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBScopeRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBScopeRequest.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBSharedApplicationProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBSharedApplicationProtocol.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBChunkInputStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBChunkInputStream.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBCustomDatatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBCustomDatatypes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBCustomDatatypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBCustomDatatypes.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBCustomRoutes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBCustomRoutes.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBCustomRoutes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBCustomRoutes.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBCustomTasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBCustomTasks.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBCustomTasks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBCustomTasks.m -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBSDKConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBSDKConstants.h -------------------------------------------------------------------------------- /Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBSDKConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/Source/ObjectiveDropboxOfficial/Shared/Handwritten/Resources/DBSDKConstants.m -------------------------------------------------------------------------------- /TestObjectiveDropbox/IntegrationTests/TestAppType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/IntegrationTests/TestAppType.h -------------------------------------------------------------------------------- /TestObjectiveDropbox/IntegrationTests/TestClasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/IntegrationTests/TestClasses.h -------------------------------------------------------------------------------- /TestObjectiveDropbox/IntegrationTests/TestClasses.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/IntegrationTests/TestClasses.m -------------------------------------------------------------------------------- /TestObjectiveDropbox/IntegrationTests/TestData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/IntegrationTests/TestData.h -------------------------------------------------------------------------------- /TestObjectiveDropbox/IntegrationTests/TestData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/IntegrationTests/TestData.m -------------------------------------------------------------------------------- /TestObjectiveDropbox/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/Podfile -------------------------------------------------------------------------------- /TestObjectiveDropbox/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/Podfile.lock -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox.xcodeproj/xcshareddata/xcschemes/TestObjectiveDropbox_iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox.xcodeproj/xcshareddata/xcschemes/TestObjectiveDropbox_iOS.xcscheme -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox.xcodeproj/xcshareddata/xcschemes/TestObjectiveDropbox_macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox.xcodeproj/xcshareddata/xcschemes/TestObjectiveDropbox_macOS.xcscheme -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_iOS/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_iOS/AppDelegate.h -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_iOS/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_iOS/AppDelegate.m -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_iOS/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_iOS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_iOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_iOS/Info.plist -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_iOS/TestObjectiveDropbox_iOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_iOS/TestObjectiveDropbox_iOS.entitlements -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_iOS/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_iOS/ViewController.h -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_iOS/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_iOS/ViewController.m -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_iOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_iOS/main.m -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_iOSTests/FileRoutesTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_iOSTests/FileRoutesTests.m -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_iOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_iOSTests/Info.plist -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_iOSTests/TeamRoutesTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_iOSTests/TeamRoutesTests.m -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_iOSTests/TestAuthTokenGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_iOSTests/TestAuthTokenGenerator.h -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_iOSTests/TestAuthTokenGenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_iOSTests/TestAuthTokenGenerator.m -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_macOS/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_macOS/AppDelegate.h -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_macOS/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_macOS/AppDelegate.m -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_macOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/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/Blankwonder/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_macOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_macOS/Info.plist -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_macOS/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_macOS/ViewController.h -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_macOS/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_macOS/ViewController.m -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_macOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_macOS/main.m -------------------------------------------------------------------------------- /TestObjectiveDropbox/TestObjectiveDropbox_macOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/TestObjectiveDropbox/TestObjectiveDropbox_macOSTests/Info.plist -------------------------------------------------------------------------------- /generate_base_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/generate_base_client.py -------------------------------------------------------------------------------- /update_repo_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/update_repo_check.sh -------------------------------------------------------------------------------- /update_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blankwonder/dropbox-sdk-obj-c/HEAD/update_version.sh --------------------------------------------------------------------------------