/*
* DeepL API Documentation
*
* The DeepL API provides programmatic access to DeepL’s machine translation technology.
*
* The version of the OpenAPI document: 2.7.0
*
* Generated by: https://openapi-generator.tech
*/
#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct DocumentTranslationError {
/// detailed error message
#[serde(rename = "message", skip_serializing_if = "Option::is_none")]
pub message: Option<String>,
}
impl DocumentTranslationError {
pub fn new() -> DocumentTranslationError {
DocumentTranslationError {
message: None,
}
}
}