langfuse_client_base/models/
organization_api_key.rs1use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize, bon::Builder)]
15pub struct OrganizationApiKey {
16 #[serde(rename = "id")]
17 pub id: String,
18 #[serde(rename = "createdAt")]
19 pub created_at: String,
20 #[serde(
21 rename = "expiresAt",
22 default,
23 with = "::serde_with::rust::double_option",
24 skip_serializing_if = "Option::is_none"
25 )]
26 pub expires_at: Option<Option<String>>,
27 #[serde(
28 rename = "lastUsedAt",
29 default,
30 with = "::serde_with::rust::double_option",
31 skip_serializing_if = "Option::is_none"
32 )]
33 pub last_used_at: Option<Option<String>>,
34 #[serde(
35 rename = "note",
36 default,
37 with = "::serde_with::rust::double_option",
38 skip_serializing_if = "Option::is_none"
39 )]
40 pub note: Option<Option<String>>,
41 #[serde(rename = "publicKey")]
42 pub public_key: String,
43 #[serde(rename = "displaySecretKey")]
44 pub display_secret_key: String,
45}
46
47impl OrganizationApiKey {
48 pub fn new(
49 id: String,
50 created_at: String,
51 public_key: String,
52 display_secret_key: String,
53 ) -> OrganizationApiKey {
54 OrganizationApiKey {
55 id,
56 created_at,
57 expires_at: None,
58 last_used_at: None,
59 note: None,
60 public_key,
61 display_secret_key,
62 }
63 }
64}