Skip to content
This repository has been archived by the owner on Apr 2, 2022. It is now read-only.

Commit

Permalink
Merge pull request #10 from dennmart/update-member-struct
Browse files Browse the repository at this point in the history
Update Member struct
  • Loading branch information
VojtechVitek committed Jan 27, 2016
2 parents 39e67eb + e3b7422 commit a76f6e0
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions member.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,13 @@ import (
)

type Member struct {
client *Client
Id string `json:"id"`
AvatarHash string `json:"avatarHash"`
Bio string `json:"bio"`
BioData string `json:"bioData"`
client *Client
Id string `json:"id"`
AvatarHash string `json:"avatarHash"`
Bio string `json:"bio"`
BioData struct {
Emoji interface{} `json:"emoji,omitempty"`
} `json:"bioData"`
Confirmed bool `json:"confirmed"`
FullName string `json:"fullName"`
IdPremOrgsAdmin []string `json:"idPremOrgsAdmin"`
Expand Down

0 comments on commit a76f6e0

Please sign in to comment.