ShareFolderJobStatus
public enum ShareFolderJobStatus : CustomStringConvertible, JSONRepresentable
The ShareFolderJobStatus union
-
The asynchronous job is still in progress.
Declaration
Swift
case inProgress
-
The share job has finished. The value is the metadata for the folder.
Declaration
Swift
case complete(Sharing.SharedFolderMetadata)
-
An unspecified error.
Declaration
Swift
case failed(Sharing.ShareFolderError)
-
Declaration
Swift
public var description: String { get }