discogs_api/data_types/
video.rs

1use serde::Deserialize;
2
3#[derive(Debug, Clone, Deserialize)]
4pub struct Video {
5    pub uri: String,
6    pub title: String,
7    pub description: String,
8}