rive-models 1.2.1

Revolt API models for the Rive ecosystem.
Documentation
1
2
3
4
5
6
7
8
use serde::Deserialize;

/// Voice server authentication response
#[derive(Deserialize, Debug, Clone)]
pub struct VoiceAuthenticationData {
    /// Token for authenticating with the voice server
    pub token: String,
}