AccessibleBy

public enum AccessibleBy : BoxEnum

Specifies type of value that has granted access to an object.

  • The user that is granted access

    Declaration

    Swift

    case user
  • The group that is granted access

    Declaration

    Swift

    case group
  • A custom object type for defining access that is not yet implemented

    Declaration

    Swift

    case customValue(String)
  • Creates a new value

    Declaration

    Swift

    public init(_ value: String)

    Parameters

    value

    String representation of an AccessibleBy rawValue

  • Returns string representation of type that can be used in a request.

    Declaration

    Swift

    public var description: String { get }