SharedLinkCreatePolicy

public enum SharedLinkCreatePolicy : CustomStringConvertible, JSONRepresentable

Policy governing the visibility of shared links. This policy can apply to newly created shared links, or all shared links.

  • By default, anyone can access newly created shared links. No login will be required to access the shared links unless overridden.

    Declaration

    Swift

    case defaultPublic
  • By default, only members of the same team can access newly created shared links. Login will be required to access the shared links unless overridden.

    Declaration

    Swift

    case defaultTeamOnly
  • Only members of the same team can access all shared links. Login will be required to access all shared links.

    Declaration

    Swift

    case teamOnly
  • Only people invited can access newly created links. Login will be required to access the shared links unless overridden.

    Declaration

    Swift

    case defaultNoOne
  • An unspecified error.

    Declaration

    Swift

    case other
  • Declaration

    Swift

    public var description: String { get }