12345678910111213141516171819202122232425262728293031323334353637383940 |
- package discordgo
- type User struct {
- ID string `json:"id"`
- Email string `json:"email"`
- Username string `json:"username"`
- Avatar string `json:"Avatar"`
- Verified bool `json:"verified"`
-
- }
- type PrivateChannel struct {
- ID string `json:"id"`
- IsPrivate bool `json:"is_private"`
- LastMessageID string `json:"last_message_id"`
- Recipient User `json:"recipient"`
- }
- type Settings struct {
- RenderEmbeds bool `json:"render_embeds"`
- InlineEmbedMedia bool `json:"inline_embed_media"`
- EnableTtsCommand bool `json:"enable_tts_command"`
- MessageDisplayCompact bool `json:"message_display_compact"`
- Locale string `json:"locale"`
- ShowCurrentGame bool `json:"show_current_game"`
- Theme string `json:"theme"`
- MutedChannels []string `json:"muted_channels"`
- }
|