/*
* Antimatter Public API
*
* Interact with the Antimatter Cloud API
*
* The version of the OpenAPI document: 2.0.13
* Contact: support@antimatter.io
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct RootEncryptionKeyListResponse {
/// The newly created root encryption key's ID.
#[serde(rename = "keys", skip_serializing_if = "Option::is_none")]
pub keys: Option<Vec<models::RootEncryptionKeyItem>>,
}
impl RootEncryptionKeyListResponse {
pub fn new() -> RootEncryptionKeyListResponse {
RootEncryptionKeyListResponse {
keys: None,
}
}
}