clientapi-pve 2026.5.24

Generated from apidoc.js. NOT an official Proxmox specification. See https://pve.proxmox.com/pve-docs/api-viewer/ for the upstream documentation.
Documentation
/*
 * Proxmox Virtual Environment API
 *
 * Generated from apidoc.js. NOT an official Proxmox specification. See https://pve.proxmox.com/pve-docs/api-viewer/ for the upstream documentation.
 *
 * The version of the OpenAPI document: 9.x
 * 
 * Generated by: https://openapi-generator.tech
 */

use crate::models;
use serde::{Deserialize, Serialize};

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ClusterAcmeGetMetaResponseData {

    /// Hostnames referring to the ACME servers.
    #[serde(rename = "caaIdentities", skip_serializing_if = "Option::is_none")]
    pub caa_identities: Option<Vec<String>>,

    /// EAB Required
    #[serde(rename = "externalAccountRequired", skip_serializing_if = "Option::is_none")]
    pub external_account_required: Option<models::PveBoolean>,

    /// ACME TermsOfService URL.
    #[serde(rename = "termsOfService", skip_serializing_if = "Option::is_none")]
    pub terms_of_service: Option<String>,

    /// URL to more information about the ACME server.
    #[serde(rename = "website", skip_serializing_if = "Option::is_none")]
    pub website: Option<String>,


}

impl ClusterAcmeGetMetaResponseData {
    pub fn new() -> ClusterAcmeGetMetaResponseData {
        ClusterAcmeGetMetaResponseData {
            
            caa_identities: None,
            
            external_account_required: None,
            
            terms_of_service: None,
            
            website: None,
            
        }
    }
}