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,
}