From 216e0056d6385eba9d31cb37e6ff64314860d2cc Mon Sep 17 00:00:00 2001 From: mhupman Date: Fri, 12 Jul 2019 15:08:17 -0400 Subject: [PATCH] feat: Add AccountID and AccountType to GroupMember struct --- group.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/group.go b/group.go index 8ceadc9..a0b7776 100644 --- a/group.go +++ b/group.go @@ -43,10 +43,12 @@ type GroupMember struct { Self string `json:"self,omitempty"` Name string `json:"name,omitempty"` Key string `json:"key,omitempty"` + AccountID string `json:"accountId,omitempty"` EmailAddress string `json:"emailAddress,omitempty"` DisplayName string `json:"displayName,omitempty"` Active bool `json:"active,omitempty"` TimeZone string `json:"timeZone,omitempty"` + AccountType string `json:"accountType,omitempty"` } // GroupSearchOptions specifies the optional parameters for the Get Group methods