Skip to content

Commit

Permalink
fix VoiceRegion.ID type (#354)
Browse files Browse the repository at this point in the history
  • Loading branch information
MCausc78 committed May 8, 2024
1 parent 7bfde5b commit e320d08
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions discord/voice_region.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
package discord

import "github.com/disgoorg/snowflake/v2"

// VoiceRegion (https://discord.com/developers/docs/resources/voice#voice-region-object)
type VoiceRegion struct {
ID snowflake.ID `json:"id"`
ID string `json:"id"`
Name string `json:"name"`
Vip bool `json:"vip"`
Optimal bool `json:"optimal"`
Expand Down

0 comments on commit e320d08

Please sign in to comment.