langfuse_client/models/
api_key_response.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/// ApiKeyResponse : Response for API key creation
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct ApiKeyResponse {
17    #[serde(rename = "id")]
18    pub id: String,
19    #[serde(rename = "createdAt")]
20    pub created_at: String,
21    #[serde(rename = "publicKey")]
22    pub public_key: String,
23    #[serde(rename = "secretKey")]
24    pub secret_key: String,
25    #[serde(rename = "displaySecretKey")]
26    pub display_secret_key: String,
27    #[serde(rename = "note", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
28    pub note: Option<Option<String>>,
29}
30
31impl ApiKeyResponse {
32    /// Response for API key creation
33    pub fn new(id: String, created_at: String, public_key: String, secret_key: String, display_secret_key: String) -> ApiKeyResponse {
34        ApiKeyResponse {
35            id,
36            created_at,
37            public_key,
38            secret_key,
39            display_secret_key,
40            note: None,
41        }
42    }
43}
44