useserde::{Deserialize, Serialize};/// Cell Image object
////// # Docs
/// <https://smartsheet.redoc.ly/#section/Image-Object>
///#[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)]#[serde(rename_all ="camelCase")]pubstructImage{/// Image Id.
pubid: String,
/// Alternate text for the image.
pubalt_text: String,
/// Original height (in pixels) of the uploaded image.
pubheight:u64,
/// Original width (in pixels) of the uploaded image.
pubwidth:u64,
}