From 179c1c05d70d9e866b8eca052d790b3ff5004705 Mon Sep 17 00:00:00 2001 From: Don Cote Date: Wed, 17 Jul 2019 14:42:09 -0400 Subject: [PATCH] change data to be an interface --- record.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/record.go b/record.go index 7e788fe..d4e4cef 100644 --- a/record.go +++ b/record.go @@ -9,8 +9,8 @@ import ( // Record represents a Data Bridge data record type Record struct { - ID string `json:"id"` - Data []map[string]string `json:"data"` + ID string `json:"id"` + Data []map[string]interface{} `json:"data"` } func getNextRecord(c Client) (*Record, error) {