hcloud 0.25.0

Unofficial Rust crate for accessing the Hetzner Cloud API
Documentation
/*
 * Hetzner Cloud API
 *
 * Copied from the official API documentation for the Public Hetzner Cloud.
 *
 * The version of the OpenAPI document: 0.28.0
 *
 * Generated by: https://openapi-generator.tech
 */

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

/// CreatedFrom : Information about the Server the Image was created from.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct CreatedFrom {
    /// ID of the Server the Image was created from.
    #[serde(rename = "id")]
    pub id: i64,
    /// Server name at the time the Image was created.
    #[serde(rename = "name")]
    pub name: String,
}

impl CreatedFrom {
    /// Information about the Server the Image was created from.
    pub fn new(id: i64, name: String) -> CreatedFrom {
        CreatedFrom { id, name }
    }
}