soundcloud_rs/models/response/reposts.rs
1use serde::{Deserialize, Serialize};
2
3use crate::{
4 models::response::PagingCollection,
5 response::{Track, User},
6};
7
8pub type Reposts = PagingCollection<Repost>;
9
10#[derive(Debug, Serialize, Deserialize, Default, Clone)]
11pub struct Repost {
12 pub created_at: Option<String>,
13 pub r#type: Option<String>,
14 pub user: Option<User>,
15 pub uuid: Option<String>,
16 pub caption: Option<String>,
17 pub track: Option<Track>,
18}