From dc99a5d0e679f263b45d62d36dbe42bfb043d04e Mon Sep 17 00:00:00 2001 From: mehanizm Date: Tue, 14 Apr 2020 18:30:44 +0300 Subject: [PATCH] fix: change type in json tag --- table.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/table.go b/table.go index 70bfb29..adb18b0 100644 --- a/table.go +++ b/table.go @@ -12,7 +12,7 @@ import ( // Records base type of airtable records type Records struct { Records []*Record `json:"records"` - Offset int `offset:"omitempty"` + Offset int `json:"offset,omitempty"` } // Table represents table object