hcloud/models/
list_prices_response_pricing_image.rs1use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct ListPricesResponsePricingImage {
17    #[serde(rename = "price_per_gb_month")]
18    pub price_per_gb_month: Box<models::Price>,
19}
20
21impl ListPricesResponsePricingImage {
22    pub fn new(price_per_gb_month: models::Price) -> ListPricesResponsePricingImage {
24        ListPricesResponsePricingImage {
25            price_per_gb_month: Box::new(price_per_gb_month),
26        }
27    }
28}