From 9c1fd5d8a9f27aded86b21be4d1591916dfe56e0 Mon Sep 17 00:00:00 2001 From: Unknown Date: Tue, 31 Jul 2018 15:32:29 -0500 Subject: [PATCH] Changed Member.JoinedAt to type Timestamp It was previously just string, but has been updated to be consistent with the other structs. --- structs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/structs.go b/structs.go index d089b5f..aa4d052 100644 --- a/structs.go +++ b/structs.go @@ -597,7 +597,7 @@ type Member struct { GuildID string `json:"guild_id"` // The time at which the member joined the guild, in ISO8601. - JoinedAt string `json:"joined_at"` + JoinedAt Timestamp `json:"joined_at"` // The nickname of the member, if they have one. Nick string `json:"nick"`