SearchScope

public enum SearchScope : BoxEnum

Defines search scope

  • Scope limited to current user

    Declaration

    Swift

    case user
  • Scope limited the enterprise.

    Declaration

    Swift

    case enterprise
  • A custom search scope that is not yet implemented. To enable this type of scope for an administrator, please contact us

    Declaration

    Swift

    case customValue(String)
  • Initializer

    Declaration

    Swift

    public init(_ value: String)

    Parameters

    value

    String representing search scope

  • Returns string representation of scope.

    Declaration

    Swift

    public var description: String { get }