AssetDownloadState
public enum AssetDownloadState : String
Download state enumeration used to track the download states of Assets.
-
The asset is not downloaded at all.
Declaration
Swift
case notDownloaded = "NOT_DOWNLOADED" -
The asset has a download in progress.
Declaration
Swift
case downloading = "DOWNLOADING" -
The asset is downloaded and saved on diek.
Declaration
Swift
case downloaded = "DOWNLOADED" -
Download finished with an error
Declaration
Swift
case error = "ERROR" -
inforamation about AssetDownloadState
Declaration
Swift
public var description: String { get }