UploadState

@objc(FSUploadStatus)
public enum UploadState : UInt
extension UploadState: CustomStringConvertible

Represents the current state of an upload.

  • Upload has not started.

    Declaration

    Swift

    case notStarted
  • Upload is currently in progress.

    Declaration

    Swift

    case inProgress
  • Upload has completed.

    Declaration

    Swift

    case completed
  • Upload was cancelled.

    Declaration

    Swift

    case cancelled
  • Upload failed.

    Declaration

    Swift

    case failed