Interface GetTableRowsResponse<Index, Row>

interface GetTableRowsResponse<Index, Row> {
    more: boolean;
    next_key?: Index;
    ram_payers?: Name[];
    rows: Row[];
}

Type Parameters

Properties

more: boolean
next_key?: Index
ram_payers?: Name[]
rows: Row[]