RequestedVisibility

public enum RequestedVisibility : CustomStringConvertible, JSONRepresentable

The access permission that can be requested by the caller for the shared link. Note that the final resolved visibility of the shared link takes into account other aspects, such as team and shared folder settings. Check the ResolvedVisibility for more info on the possible resolved visibility values of shared links.

  • 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
  • Declaration

    Swift

    public var description: String { get }