Skip to main content

clientapi_pbs/models/
nodes_status_get_status_response_data_info.rs

1/*
2 * Proxmox Backup Server API
3 *
4 * Generated from apidoc.js. NOT an official Proxmox specification. See https://pbs.proxmox.com/docs/api-viewer/ for the upstream documentation.
5 *
6 * The version of the OpenAPI document: 9.x
7 * 
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14/// NodesStatusGetStatusResponseDataInfo : Contains general node information such as the fingerprint`
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct NodesStatusGetStatusResponseDataInfo {
17
18    /// The SSL Fingerprint
19    #[serde(rename = "fingerprint")]
20    pub fingerprint: String,
21
22
23}
24
25impl NodesStatusGetStatusResponseDataInfo {
26    /// Contains general node information such as the fingerprint`
27    pub fn new(fingerprint: String) -> NodesStatusGetStatusResponseDataInfo {
28        NodesStatusGetStatusResponseDataInfo {
29            
30            fingerprint,
31            
32        }
33    }
34}
35
36