SearchResponse
data class SearchResponse(val summary: SearchRequestSummary, val results: List<SearchResult> = emptyList())
Content copied to clipboard
Response from the Search API.
Important: This is a Public Preview API. It may be changed or removed at any time.
Parameters
summary
The summary of the request to the Search API that has been performed.
results
The search results returned from the Search API.
Constructors
Link copied to clipboard
fun SearchResponse(summary: SearchRequestSummary, results: List<SearchResult> = emptyList())
Content copied to clipboard