diff options
| -rw-r--r-- | definitions/structs/voice_region.yml | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/definitions/structs/voice_region.yml b/definitions/structs/voice_region.yml index 3cdad29..8019b54 100644 --- a/definitions/structs/voice_region.yml +++ b/definitions/structs/voice_region.yml @@ -1,16 +1,31 @@ --- name: VoiceRegion -description: "Information about an available voice region." +description: Information about an available voice region. fields: + - name: custom + description: > + Whether it is a custom voice region, which is used for events. + type: bool + - name: deprecated + description: > + Whether it is a deprecated voice region, which you should avoid using. + type: bool - name: id + description: The internal id of the voice region. type: string - name: name + description: A recognizable name of the location of the voice region. type: string - name: optimal - type: string + description: > + Whether the voice region is optimal for use for the current user. + type: bool - name: sample_hostname + description: An example hostname for the region. type: string - name: sample_port + description: An example port for the region. type: u64 - name: vip + description: Whether the voice regions is only for VIPs. type: bool |