Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
hhaste committed Mar 5, 2024
1 parent f8af252 commit 6ac661f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions structs.go
Original file line number Diff line number Diff line change
Expand Up @@ -1268,20 +1268,20 @@ func (g *Guild) BannerURL(size string) string {

// A UserGuild holds a brief version of a Guild
type UserGuild struct {
ID string `json:"id"`
Name string `json:"name"`
Icon string `json:"icon"`
Owner bool `json:"owner"`
Permissions int64 `json:"permissions,string"`
Features []GuildFeature `json:"features"`
ID string `json:"id"`
Name string `json:"name"`
Icon string `json:"icon"`
Owner bool `json:"owner"`
Permissions int64 `json:"permissions,string"`
Features []GuildFeature `json:"features"`

// Approximate number of members in this guild
// NOTE: this field is only filled when withCounts is true
ApproximateMemberCount int `json:"approximate_member_count"`
ApproximateMemberCount int `json:"approximate_member_count"`

// Approximate number of members in this guild
// NOTE: this field is only filled when withCounts is true
ApproximatePresenceCount int `json:"approximate_presence_count"`
ApproximatePresenceCount int `json:"approximate_presence_count"`
}

// GuildFeature indicates the presence of a feature in a guild
Expand Down

0 comments on commit 6ac661f

Please sign in to comment.