redfish-codegen 0.3.1

An unopinionated translation of the Redfish specification into Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Generated by redfish-codegen. Do not modify.

use crate::models;

/// Authentication information of the identity of the SPDM Requester.
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize)]
#[derive(derivative::Derivative)]
#[derivative(Default)]
pub struct SPDMrequesterAuth {
    #[serde(rename = "ProvidedCertificate")]
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub provided_certificate: Option<models::odata_v4::IdRef>,
}

impl crate::Metadata<'static> for SPDMrequesterAuth {
    const JSON_SCHEMA: &'static str = "ComponentIntegrity.v1_2_1.json";
}