diff --git a/responses.go b/responses.go index ae37c269..4b54d965 100644 --- a/responses.go +++ b/responses.go @@ -283,8 +283,9 @@ type GetTableRowsRequest struct { } type GetTableRowsResp struct { - More bool `json:"more"` - Rows json.RawMessage `json:"rows"` // defer loading, as it depends on `JSON` being true/false. + More bool `json:"more"` + NextKey string `json:"next_key"` + Rows json.RawMessage `json:"rows"` // defer loading, as it depends on `JSON` being true/false. } func (resp *GetTableRowsResp) JSONToStructs(v interface{}) error {