TeamFolderArchiveJobStatus
public enum TeamFolderArchiveJobStatus : CustomStringConvertible, JSONRepresentable
The TeamFolderArchiveJobStatus union
-
The asynchronous job is still in progress.
Declaration
Swift
case inProgress -
The archive job has finished. The value is the metadata for the resulting team folder.
Declaration
Swift
case complete(Team.TeamFolderMetadata) -
Error occurred while performing an asynchronous job from teamFolderArchive.
Declaration
Swift
case failed(Team.TeamFolderArchiveError) -
Declaration
Swift
public var description: String { get }
View on GitHub
TeamFolderArchiveJobStatus Enumeration Reference