1
2
3
4
5
6
7
8
9
10
11
12
13
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,
}