langfuse_client_base/models/projects_create_api_key_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, bon::Builder)]
15pub struct ProjectsCreateApiKeyRequest {
16 /// Optional note for the API key
17 #[serde(
18 rename = "note",
19 default,
20 with = "::serde_with::rust::double_option",
21 skip_serializing_if = "Option::is_none"
22 )]
23 pub note: Option<Option<String>>,
24 /// Optional predefined public key. Must start with 'pk-lf-'. If provided, secretKey must also be provided.
25 #[serde(
26 rename = "publicKey",
27 default,
28 with = "::serde_with::rust::double_option",
29 skip_serializing_if = "Option::is_none"
30 )]
31 pub public_key: Option<Option<String>>,
32 /// Optional predefined secret key. Must start with 'sk-lf-'. If provided, publicKey must also be provided.
33 #[serde(
34 rename = "secretKey",
35 default,
36 with = "::serde_with::rust::double_option",
37 skip_serializing_if = "Option::is_none"
38 )]
39 pub secret_key: Option<Option<String>>,
40}
41
42impl ProjectsCreateApiKeyRequest {
43 pub fn new() -> ProjectsCreateApiKeyRequest {
44 ProjectsCreateApiKeyRequest {
45 note: None,
46 public_key: None,
47 secret_key: None,
48 }
49 }
50}