Interface MarketSearchBasicResponse

interface MarketSearchBasicResponse {
    count: number;
    has_more: number | boolean;
    items: MarketMarketItemBasicWithGroup[];
    total: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

count: number

Current chunk size

has_more: number | boolean

Next chunk present

total: number

Total size

Generated using TypeDoc