LinkAudience

public enum LinkAudience : CustomStringConvertible, JSONRepresentable

The LinkAudience union

  • Link is accessible by anyone.

    Declaration

    Swift

    case public_
  • Link is accessible only by team members.

    Declaration

    Swift

    case team
  • The link can be used by no one. The link merely points the user to the content, and does not grant additional rights to the user. Members of the content who use this link can only access the content with their pre-existing access rights.

    Declaration

    Swift

    case noOne
  • Use require_password instead. A link-specific password is required to access the link. Login is not required.

    Declaration

    Swift

    case password
  • Link is accessible only by members of the content.

    Declaration

    Swift

    case members
  • An unspecified error.

    Declaration

    Swift

    case other
  • Declaration

    Swift

    public var description: String { get }