1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
//! Image object

use serde::{Deserialize, Serialize};

/// Image object
///
/// [Reference](https://developer.spotify.com/documentation/web-api/reference/#object-imageobject)
#[derive(Clone, Debug, Serialize, Deserialize, PartialEq, Eq, Default)]
pub struct Image {
    pub height: Option<u32>,
    pub url: String,
    pub width: Option<u32>,
}