some_random_api/structs/
image.rs

1use serde::Deserialize;
2
3#[derive(Debug, Deserialize)]
4pub struct Image {
5    pub link: String,
6}