Skip to main content

langfuse_client_base/models/
project.rs

1/*
2 * langfuse
3 *
4 * ## Authentication  Authenticate with the API using [Basic Auth](https://en.wikipedia.org/wiki/Basic_access_authentication), get API keys in the project settings:  - username: Langfuse Public Key - password: Langfuse Secret Key  ## Exports  - OpenAPI spec: https://cloud.langfuse.com/generated/api/openapi.yml - Postman collection: https://cloud.langfuse.com/generated/postman/collection.json
5 *
6 * The version of the OpenAPI document:
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11use 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    /// Metadata for the project
23    #[serde(rename = "metadata")]
24    pub metadata: std::collections::HashMap<String, serde_json::Value>,
25    /// Number of days to retain data. Null or 0 means no retention. Omitted if no retention is configured.
26    #[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}