langfuse_client_base/models/
project.rs1use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize, bon::Builder)]
15pub struct Project {
16 #[serde(rename = "id")]
17 pub id: String,
18 #[serde(rename = "name")]
19 pub name: String,
20 #[serde(rename = "organization")]
21 pub organization: Box<models::Organization>,
22 #[serde(rename = "metadata")]
24 pub metadata: std::collections::HashMap<String, serde_json::Value>,
25 #[serde(
27 rename = "retentionDays",
28 default,
29 with = "::serde_with::rust::double_option",
30 skip_serializing_if = "Option::is_none"
31 )]
32 pub retention_days: Option<Option<i32>>,
33}
34
35impl Project {
36 pub fn new(
37 id: String,
38 name: String,
39 organization: models::Organization,
40 metadata: std::collections::HashMap<String, serde_json::Value>,
41 ) -> Project {
42 Project {
43 id,
44 name,
45 organization: Box::new(organization),
46 metadata,
47 retention_days: None,
48 }
49 }
50}