/*
* Hetzner Cloud API
*
* Copied from the official API documentation for the Public Hetzner Cloud.
*
* The version of the OpenAPI document: 0.17.0
*
* Generated by: https://openapi-generator.tech
*/
/// ReplaceImageResponse : Response to PUT https://api.hetzner.cloud/v1/images/{id}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct ReplaceImageResponse {
#[serde(rename = "image", skip_serializing_if = "Option::is_none")]
pub image: Option<Box<crate::models::Image>>,
}
impl ReplaceImageResponse {
#![allow(clippy::too_many_arguments)]
/// Response to PUT https://api.hetzner.cloud/v1/images/{id}
pub fn new() -> ReplaceImageResponse {
ReplaceImageResponse { image: None }
}
}