redfish_codegen/models/volume/v1_9_0/
reverse_replication_relationship_request_body.rs

1// Generated by redfish-codegen. Do not modify.
2
3
4/// This action is used to reverse the replication relationship between a source and target volume.
5#[derive(Clone, Debug, serde::Deserialize, serde::Serialize)]
6#[derive(derivative::Derivative)]
7#[derivative(Default)]
8pub struct ReverseReplicationRelationshipRequestBody {
9    /// The Uri to the existing target volume.
10    #[serde(rename = "TargetVolume")]
11    pub target_volume: String,
12}
13
14impl crate::Metadata<'static> for ReverseReplicationRelationshipRequestBody {
15    const JSON_SCHEMA: &'static str = "Volume.v1_9_0.json";
16}