langfuse_client_base/models/projects_create_request.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 ProjectsCreateRequest {
16 #[serde(rename = "name")]
17 pub name: String,
18 /// Optional metadata for the project
19 #[serde(
20 rename = "metadata",
21 default,
22 with = "::serde_with::rust::double_option",
23 skip_serializing_if = "Option::is_none"
24 )]
25 pub metadata: Option<Option<std::collections::HashMap<String, serde_json::Value>>>,
26 /// Number of days to retain data. Must be 0 or at least 3 days. Requires data-retention entitlement for non-zero values. Optional.
27 #[serde(rename = "retention")]
28 pub retention: i32,
29}
30
31impl ProjectsCreateRequest {
32 pub fn new(name: String, retention: i32) -> ProjectsCreateRequest {
33 ProjectsCreateRequest {
34 name,
35 metadata: None,
36 retention,
37 }
38 }
39}