検索結果データ

interface SearchResult {
    count: number;
    data?: Entity[];
    hasNext: boolean;
}

Properties

Properties

count: number

検索結果件数

data?: Entity[]

検索結果のEntityデータ

hasNext: boolean

次ページ以降の検索結果データを有しているか?