vinted-rs 0.3.2

An async Vinted API wrapper
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::model::{Deserialize, Serialize};

use super::photo::Photo;

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct User {
    id: i64,
    login: String, //username
    photo: Photo,
}