use serde::{Deserialize, Serialize};
/// Example:
/// ```rust
/// SynthesisInput {
/// text: None,
/// ssml: Some(String::from("test"))
/// }
/// ```
#[derive(Serialize, Deserialize, Debug, Hash, PartialEq, Eq, Clone)]
pub struct SynthesisInput {
pub text: Option,
pub ssml: Option,
}