scaleway_rs/data/
marketplace_image.rs

1use serde::Deserialize;
2
3#[derive(Deserialize, Debug)]
4pub struct ScalewayMarketplaceImageRoot
5{
6    pub images: Vec<ScalewayMarketplaceImage>,
7    pub total_count: u64,
8}
9
10#[derive(Deserialize, Debug)]
11pub struct ScalewayMarketplaceImage
12{
13    pub id: String,
14    pub name: String,
15    pub description: String,
16    pub logo: String,
17    pub categories: Vec<String>,
18    pub created_at: String,
19    pub updated_at: Option<String>,
20    pub valid_until: Option<String>,
21    pub label: String,
22}