openai_struct/models/
project_service_account_create_response.rs1#[allow(unused_imports)]
12use serde_json::Value;
13
14#[derive(Debug, Serialize, Deserialize)]
15pub struct ProjectServiceAccountCreateResponse {
16 #[serde(rename = "api_key")]
17 pub api_key: crate::models::ProjectServiceAccountApiKey,
18 #[serde(rename = "created_at")]
19 pub created_at: i32,
20 #[serde(rename = "id")]
21 pub id: String,
22 #[serde(rename = "name")]
23 pub name: String,
24 #[serde(rename = "object")]
25 pub object: String,
26 #[serde(rename = "role")]
28 pub role: String,
29}