useserde::Deserialize;/// Represents the content of a story part, typically returned in a structured JSON format.
#[derive(Debug, Deserialize, Clone)]#[serde(rename_all ="camelCase")]pubstructPartContent{/// The full text content of the story part.
pubtext:Option<String>,
/// A hash of the text content, likely used for caching or integrity checks.
#[serde(rename ="text_hash")]pubtext_hash:Option<String>,
}