//! Deepgram invitations API response types.
useserde::{Deserialize, Serialize};/// Success message.
////// See the [Deepgram API Reference][api] for more info.
////// [api]: https://developers.deepgram.com/api-reference/#invitations
#[derive(Debug, PartialEq, Clone, Serialize, Deserialize)]#[non_exhaustive]pubstructMessage{#[allow(missing_docs)]pubmessage: String,
}