burn_central_client/project/response.rs
1use std::collections::HashMap;
2
3use serde::Deserialize;
4
5#[derive(Deserialize, Debug)]
6pub struct ProjectResponse {
7 pub project_name: String,
8 pub namespace_name: String,
9 pub namespace_type: String,
10 pub description: String,
11 pub created_by: String,
12}
13
14#[derive(Debug, Deserialize)]
15pub struct CodeUploadUrlsResponse {
16 pub id: String,
17 pub digest: String,
18 pub urls: Option<HashMap<String, String>>,
19}