1use serde::Deserialize; 2 3/// Voice server authentication response 4#[derive(Deserialize, Debug, Clone)] 5pub struct VoiceAuthenticationData { 6 /// Token for authenticating with the voice server 7 pub token: String, 8}