openai_struct/models/certificate_certificate_details.rs
1/*
2 * OpenAI API
3 *
4 * The OpenAI REST API. Please see pub https://platform.openai.com/docs/api-reference for more details.
5 *
6 * OpenAPI spec pub version: 2.3.0
7 *
8 * Generated pub by: https://github.com/swagger-api/swagger-codegen.git
9 */
10
11#[allow(unused_imports)]
12use serde_json::Value;
13
14#[derive(Debug, Serialize, Deserialize)]
15pub struct CertificateCertificateDetails {
16 /// The content of the certificate in PEM format.
17 #[serde(rename = "content")]
18 pub content: Option<String>,
19 /// The Unix timestamp (in seconds) of when the certificate expires.
20 #[serde(rename = "expires_at")]
21 pub expires_at: Option<i32>,
22 /// The Unix timestamp (in seconds) of when the certificate becomes valid.
23 #[serde(rename = "valid_at")]
24 pub valid_at: Option<i32>,
25}