From 11ab21d3001f0e9c392c1c662ba6424a5d2a0efe Mon Sep 17 00:00:00 2001 From: Lasse Kabell Date: Wed, 19 Feb 2020 14:25:12 +0100 Subject: [PATCH] Add missing annotation on contact property in ContactList --- contact.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contact.go b/contact.go index 2bff906..eb9c6d4 100644 --- a/contact.go +++ b/contact.go @@ -10,7 +10,7 @@ type ContactService struct { // ContactList holds a list of Contacts and paging information type ContactList struct { Pages PageParams - Contacts []Contact + Contacts []Contact `json:"data"` ScrollParam string `json:"scroll_param,omitempty"` }