MBXDownloadState.h 580 B

1234567891011121314151617
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. /** Enum representing state of download session. */
  4. // NOLINTNEXTLINE(modernize-use-using)
  5. typedef NS_ENUM(NSInteger, MBXDownloadState)
  6. {
  7. /** Download session initiated but not started yet. */
  8. MBXDownloadStatePending,
  9. /** Download session is in progress. */
  10. MBXDownloadStateDownloading,
  11. /** Download session failed. */
  12. MBXDownloadStateFailed,
  13. /** Download session successfully finished. */
  14. MBXDownloadStateFinished
  15. } NS_SWIFT_NAME(DownloadState);