use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ListPricesResponsePricingPrimaryIps {
#[serde(rename = "prices")]
pub prices: Vec<models::PricePerTimeWithoutTraffic>,
#[serde(rename = "type")]
pub r#type: models::IpType,
}
impl ListPricesResponsePricingPrimaryIps {
pub fn new(
prices: Vec<models::PricePerTimeWithoutTraffic>,
r#type: models::IpType,
) -> ListPricesResponsePricingPrimaryIps {
ListPricesResponsePricingPrimaryIps { prices, r#type }
}
}