Documentation ¶
Index ¶
- Constants
- type AllowedMentionType
- type AllowedMentions
- type Application
- type Attachment
- type ChannelMention
- type ChannelType
- type Embed
- type EmbedAuthor
- type EmbedField
- type EmbedFooter
- type EmbedImage
- type EmbedProvider
- type EmbedVideo
- type Emoji
- type InstallParams
- type Member
- type Message
- type MessageActivity
- type MessageActivityType
- type MessageType
- type Permissions
- type Reaction
- type ResolvedData
- type Role
- type RoleTags
- type Snowflake
- type Team
- type TeamMember
- type User
Constants ¶
View Source
const ( RoleMentionType AllowedMentionType = "roles" UserMentionType = "users" EveryoneMentionType = "everyone" )
View Source
const ( GuildTextChannelType ChannelType = iota DMChannelType GuildVoiceChannelType GroupDMChannelType GuildCategoryChannelType GuildAnnouncementChannelType AnnouncementThreadChannelType = iota + 4 PublicThreadChannelType PrivateThreadChannelType GuildStageVoiceChannelType GuildDirectoryChannelType GuildForumChannelType )
View Source
const ( DefaultMessageType MessageType = iota RecipientAddMessageType RecipientRemoveMessageType CallMessageType ChannelNameChangeMessageType ChannelIconChangeMessageType ChannelPinnedMessageMessageType GuildMemberJoinMessageType GuildBoostMessageType GuildBoostTier1MessageType GuildBoostTier2MessageType GuildBoostTier3MessageType ChannelFollowAddMessageType GuildDiscoveryDisqualifiedMessageType = iota + 1 GuildDiscoveryReQualifiedMessageType GuildDiscoveryGracePeriodInitialWarningMessageType GuildDiscoveryGracePeriodFinalWarningMessageType ThreadCreatedMessageType ReplyMessageType ChatInputCommandMessageType ThreadStarterMessageMessageType GuildInviteReminderMessageType ContextMenuCommandMessageType AutoModerationActionMessageType RoleSubscriptionPurchaseMessageType InteractionPremiumUpsellMessageType GuildApplicationPremiumSubscriptionMessageType = iota + 6 )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AllowedMentionType ¶
type AllowedMentionType string
type AllowedMentions ¶
type AllowedMentions struct { Parse []AllowedMentionType `json:"parse"` Roles []Snowflake `json:"roles"` Users []Snowflake `json:"users"` RepliedUser bool `json:"replied_user"` }
type Application ¶ added in v0.1.4
type Application struct { Id Snowflake `json:"id"` Name string `json:"name"` Icon string `json:"icon"` Description string `json:"description"` RpcOrigins *[]string `json:"rpc_origins,omitempty"` BotPublic bool `json:"bot_public"` BotRequireCodeGrant bool `json:"bot_require_code_grant"` TermsOfServiceUrl *string `json:"terms_of_service_url,omitempty"` PrivacyPolicyUrl *string `json:"privacy_policy_url,omitempty"` Owner *User `json:"owner,omitempty"` VerifyKey string `json:"verify_key"` Team *Team `json:"team,omitempty"` GuildId *Snowflake `json:"guild_id,omitempty"` PrimarySkuId *Snowflake `json:"primary_sku_id,omitempty"` Slug *string `json:"slug,omitempty"` CoverImage *string `json:"cover_image,omitempty"` Flags *uint `json:"flags,omitempty"` Tags *[]string `json:"tags,omitempty"` InstallParams *InstallParams `json:"install_params,omitempty"` CustomInstallUrl *string `json:"custom_install_url,omitempty"` RoleConnectionsVerificationUrl *string `json:"role_connections_verification_url,omitempty"` }
type Attachment ¶
type Attachment struct { ID Snowflake `json:"id"` Filename string `json:"filename"` Description *string `json:"description,omitempty"` ContentType *string `json:"content_type,omitempty"` Size int `json:"size"` URL string `json:"url"` ProxyURL string `json:"proxy_url"` Height *int `json:"height,omitempty"` Width *int `json:"width,omitempty"` Ephemeral *bool `json:"ephemeral,omitempty"` }
type ChannelMention ¶ added in v0.1.4
type ChannelMention struct { Id Snowflake `json:"id"` GuildId Snowflake `json:"guild_id"` Type ChannelType `json:"type"` Name string `json:"name"` }
type ChannelType ¶ added in v0.1.4
type ChannelType uint8
type Embed ¶
type Embed struct { Title string `json:"title,omitempty"` Type string `json:"type,omitempty"` Description string `json:"description,omitempty"` URL string `json:"url,omitempty"` Timestamp string `json:"timestamp,omitempty"` Color int `json:"color,omitempty"` Image *EmbedImage `json:"image,omitempty"` Thumbnail *EmbedImage `json:"thumbnail,omitempty"` Video *EmbedVideo `json:"video,omitempty"` Provider *EmbedProvider `json:"provider,omitempty"` Author *EmbedAuthor `json:"author,omitempty"` Fields []EmbedField `json:"fields,omitempty"` }
type EmbedAuthor ¶
type EmbedField ¶
type EmbedFooter ¶
type EmbedFooter struct {}
type EmbedImage ¶
type EmbedProvider ¶
type EmbedVideo ¶
type Emoji ¶
type Emoji struct { Id *Snowflake `json:"id,omitempty"` Name *string `json:"name,omitempty"` Roles []Snowflake `json:"roles,omitempty"` User *User `json:"user,omitempty"` RequireColons *bool `json:"require_colons,omitempty"` Managed *bool `json:"managed,omitempty"` Animated *bool `json:"animated,omitempty"` Available *bool `json:"available,omitempty"` }
type InstallParams ¶ added in v0.1.4
type Member ¶
type Member struct { User *User `json:"user,omitempty"` Nick *string `json:"nick,omitempty"` Avatar *string `json:"avatar,omitempty"` Roles []Snowflake `json:"roles"` JoinedAt time.Time `json:"joined_at"` PremiumSince *time.Time `json:"premium_since,omitempty"` Deaf bool `json:"deaf"` Mute bool `json:"mute"` Pending *bool `json:"pending,omitempty"` Permissions *Permissions `json:"permissions,omitempty"` CommunicationDisabledUntil *time.Time `json:"communication_disabled_until,omitempty"` }
type Message ¶ added in v0.1.4
type Message struct { Id Snowflake `json:"id"` ChannelId Snowflake `json:"channel_id"` Author *User `json:"author"` Content string `json:"content"` Timestamp time.Time `json:"timestamp"` EditedTimestamp time.Time `json:"edited_timestamp"` Tts bool `json:"tts"` MentionEveryone bool `json:"mention_everyone"` Mentions []User `json:"mentions"` MentionRoles []Snowflake `json:"mention_roles"` MentionChannels []ChannelMention `json:"mention_channels"` Attachments []Attachment `json:"attachments"` Embeds []Embed `json:"embeds"` Reactions *[]Reaction `json:"reactions,omitempty"` Nonce interface{} `json:"nonce,omitempty"` Pinned bool `json:"pinned"` WebhookId *Snowflake `json:"webhook_id,omitempty"` Type MessageType `json:"type"` }
type MessageActivity ¶ added in v0.1.4
type MessageActivity struct { Type MessageActivityType `json:"type"` PartyId string `json:"party_id"` }
type MessageActivityType ¶ added in v0.1.4
type MessageActivityType int
const ( JoinMessageActivityType MessageActivityType = iota + 1 SpectateMessageActivityType ListenMessageActivityType JoinRequestMessageActivityType )
type MessageType ¶ added in v0.1.4
type MessageType uint8
type Permissions ¶
type Permissions uint64
func (*Permissions) MarshalJSON ¶
func (i *Permissions) MarshalJSON() ([]byte, error)
func (*Permissions) UnmarshalJSON ¶
func (i *Permissions) UnmarshalJSON(b []byte) error
type ResolvedData ¶
type Role ¶
type Role struct { Id Snowflake `json:"id"` Name string `json:"name"` Color int `json:"color"` Hoist bool `json:"hoist"` Icon *string `json:"icon,omitempty"` UnicodeEmoji *string `json:"unicode_emoji,omitempty"` Position int `json:"position"` Permissions Permissions `json:"permissions"` Managed bool `json:"managed"` Mentionable bool `json:"mentionable"` Tags *RoleTags `json:"tags,omitempty"` }
type RoleTags ¶
type RoleTags struct { BotId *Snowflake `json:"bot_id,omitempty"` IntegrationId *Snowflake `json:"integration_id,omitempty"` SubscriptionListingId *Snowflake `json:"subscription_listing_id,omitempty"` // These fields should be set to "null" in the JSON if they are true, according to the Discord docs... PremiumSubscriber bool `json:"premium_subscriber,omitempty"` AvailableForPurchase bool `json:"available_for_purchase,omitempty"` GuildConnections bool `json:"guild_connections,omitempty"` }
func (*RoleTags) MarshalJSON ¶
func (*RoleTags) UnmarshalJSON ¶
type Snowflake ¶
type Snowflake uint64
func GetSnowflake ¶
func (*Snowflake) MarshalJSON ¶
func (*Snowflake) UnmarshalJSON ¶
type Team ¶ added in v0.1.4
type Team struct { Icon string `json:"icon"` Id Snowflake `json:"id"` Members []TeamMember `json:"members"` Name string `json:"name"` OwnerUserId Snowflake `json:"owner_user_id"` }
type TeamMember ¶ added in v0.1.4
type User ¶
type User struct { Id Snowflake `json:"id"` Username string `json:"username"` Discriminator string `json:"discriminator"` Avatar *string `json:"avatar,omitempty"` Bot *bool `json:"bot,omitempty"` System *bool `json:"system,omitempty"` MfaEnabled *bool `json:"mfa_enabled,omitempty"` Banner *string `json:"banner,omitempty"` AccentColor *uint32 `json:"accent_color,omitempty"` Locale *string `json:"locale,omitempty"` Verified *bool `json:"verified,omitempty"` Email *string `json:"email,omitempty"` Flags *uint32 `json:"flags,omitempty"` PremiumType *uint8 `json:"premium_type,omitempty"` PublicFlags *uint32 `json:"public_flags,omitempty"` }
Click to show internal directories.
Click to hide internal directories.