Skip to main content

langfuse_client_base/models/
session_with_traces.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 SessionWithTraces {
16    #[serde(rename = "id")]
17    pub id: String,
18    #[serde(rename = "createdAt")]
19    pub created_at: String,
20    #[serde(rename = "projectId")]
21    pub project_id: String,
22    /// The environment from which this session originated.
23    #[serde(rename = "environment")]
24    pub environment: String,
25    #[serde(rename = "traces")]
26    pub traces: Vec<models::Trace>,
27}
28
29impl SessionWithTraces {
30    pub fn new(
31        id: String,
32        created_at: String,
33        project_id: String,
34        environment: String,
35        traces: Vec<models::Trace>,
36    ) -> SessionWithTraces {
37        SessionWithTraces {
38            id,
39            created_at,
40            project_id,
41            environment,
42            traces,
43        }
44    }
45}