use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ValidatePostLength200Response {
#[serde(rename = "text", skip_serializing_if = "Option::is_none")]
pub text: Option<String>,
#[serde(rename = "platforms", skip_serializing_if = "Option::is_none")]
pub platforms: Option<
std::collections::HashMap<String, models::ValidatePostLength200ResponsePlatformsValue>,
>,
}
impl ValidatePostLength200Response {
pub fn new() -> ValidatePostLength200Response {
ValidatePostLength200Response {
text: None,
platforms: None,
}
}
}