langfuse_client_base/models/
organization_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)]
15pub struct OrganizationProject {
16    #[serde(rename = "id")]
17    pub id: String,
18    #[serde(rename = "name")]
19    pub name: String,
20    #[serde(
21        rename = "metadata",
22        default,
23        with = "::serde_with::rust::double_option",
24        skip_serializing_if = "Option::is_none"
25    )]
26    pub metadata: Option<Option<std::collections::HashMap<String, serde_json::Value>>>,
27    #[serde(rename = "createdAt")]
28    pub created_at: String,
29    #[serde(rename = "updatedAt")]
30    pub updated_at: String,
31}
32
33impl OrganizationProject {
34    pub fn new(
35        id: String,
36        name: String,
37        created_at: String,
38        updated_at: String,
39    ) -> OrganizationProject {
40        OrganizationProject {
41            id,
42            name,
43            metadata: None,
44            created_at,
45            updated_at,
46        }
47    }
48}