// Code generated by oagen. DO NOT EDIT.
#[allow(unused_imports)]
use super::*;
#[allow(unused_imports)]
use crate::enums::*;
use serde::{Deserialize, Serialize};
/// Summary of an encrypted object returned in list responses.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ObjectSummary {
/// Unique identifier of the object.
pub id: String,
/// Unique name of the object.
pub name: String,
/// Timestamp of the last update.
#[serde(skip_serializing_if = "Option::is_none", default)]
pub updated_at: Option<String>,
}