//! Deepgram auth API response types.
useserde::{Deserialize, Serialize};/// Returned by [`Auth::grant`](super::Auth::grant).
////// See the [Deepgram API Reference][api] for more info.
////// [api]: https://developers.deepgram.com/reference/auth/tokens/grant
#[derive(Debug, PartialEq, Clone, Serialize, Deserialize)]#[non_exhaustive]pubstructGrantResponse{/// JSON Web Token (JWT)
pubaccess_token: String,
/// Time in seconds until the JWT expires
pubexpires_in:Option<f64>,
}