/*
* 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};
/// ActiveRootEncryptionKeyResponse : The results for an activate key query.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ActiveRootEncryptionKeyResponse {
/// If true, there are still keys encrypted with non-active root encryption keys. Query again to encrypted another batch.
#[serde(rename = "has_more", skip_serializing_if = "Option::is_none")]
pub has_more: Option<bool>,
}
impl ActiveRootEncryptionKeyResponse {
/// The results for an activate key query.
pub fn new() -> ActiveRootEncryptionKeyResponse {
ActiveRootEncryptionKeyResponse {
has_more: None,
}
}
}