SearchV2Result

public class SearchV2Result : CustomStringConvertible, JSONRepresentable

The SearchV2Result struct

  • A list (possibly empty) of matches for the query.

    Declaration

    Swift

    public let matches: [Files.SearchMatchV2]
  • Used for paging. If true, indicates there is another page of results available that can be fetched by calling searchContinueV2 with the cursor.

    Declaration

    Swift

    public let hasMore: Bool
  • Pass the cursor into searchContinueV2 to fetch the next page of results.

    Declaration

    Swift

    public let cursor: String?
  • Declaration

    Swift

    public var description: String { get }