1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use crate::model::project_type::ProjectType;
use serde::Deserialize;
use serde::Serialize;

#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct ProjectData {
    pub name: String,
    #[serde(rename = "ownerAccountId")]
    pub owner_account_id: String,
    pub description: String,
    #[serde(rename = "defaultEnvironmentId")]
    pub default_environment_id: String,
    #[serde(rename = "projectType")]
    pub project_type: ProjectType,
}