ResolvedVisibility
public enum ResolvedVisibility : CustomStringConvertible, JSONRepresentable
The actual access permissions values of shared links after taking into account user preferences and the team and shared folder settings. Check the RequestedVisibility for more info on the possible visibility values that can be set by the shared link’s owner.
-
Anyone who has received the link can access it. No login required.
Declaration
Swift
case public_
-
Only members of the same team can access the link. Login is required.
Declaration
Swift
case teamOnly
-
A link-specific password is required to access the link. Login is not required.
Declaration
Swift
case password
-
Only members of the same team who have the link-specific password can access the link. Login is required.
Declaration
Swift
case teamAndPassword
-
Only members of the shared folder containing the linked file can access the link. Login is required.
Declaration
Swift
case sharedFolderOnly
-
The link merely points the user to the content, and does not grant any additional rights. Existing members of the content who use this link can only access the content with their pre-existing access rights. Either on the file directly, or inherited from a parent folder.
Declaration
Swift
case noOne
-
Only the current user can view this link.
Declaration
Swift
case onlyYou
-
An unspecified error.
Declaration
Swift
case other
-
Declaration
Swift
public var description: String { get }