use serde::Deserialize;
#[derive(Debug, Deserialize)]
pub struct Image {
pub id: u32,
pub uuid: String,
#[serde(rename = "type")]
pub kind: String,
pub attributes: ImageAttributes,
}
#[derive(Debug, Deserialize)]
pub struct ImageAttributes {
pub thumb: String,
pub small: String,
pub medium: String,
pub large: String,
pub orientation: String,
pub image_type: String,
}