FileErrorResult
public enum FileErrorResult : CustomStringConvertible, JSONRepresentable
The FileErrorResult union
-
File specified by id was not found.
Declaration
Swift
case fileNotFoundError(String) -
User does not have permission to take the specified action on the file.
Declaration
Swift
case invalidFileActionError(String) -
User does not have permission to access file specified by file.Id.
Declaration
Swift
case permissionDeniedError(String) -
An unspecified error.
Declaration
Swift
case other -
Declaration
Swift
public var description: String { get }
View on GitHub
FileErrorResult Enumeration Reference