SearchResponse

data class SearchResponse(val query: String, val count: Int, val quotes: List<SearchQuote>, val news: List<SearchNews>)(source)

Yahoo Finance Search API 응답 데이터

검색어에 대한 종목 및 뉴스 검색 결과를 담고 있습니다.

Constructors

Link copied to clipboard
constructor(query: String, count: Int, quotes: List<SearchQuote>, news: List<SearchNews>)

Properties

Link copied to clipboard
val count: Int

총 결과 개수

Link copied to clipboard

뉴스 검색 결과 리스트

Link copied to clipboard

검색어

Link copied to clipboard

종목 검색 결과 리스트