use serde::Deserialize;
use serde::Serialize;
use uuid::Uuid;
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct ProjectGrantData {
#[serde(rename = "granteeAccountId")]
pub grantee_account_id: String,
#[serde(rename = "grantorProjectId")]
pub grantor_project_id: Uuid,
#[serde(rename = "projectPolicyId")]
pub project_policy_id: Uuid,
}