/*
* enbbox API
*
* Notification infrastructure API — open-source alternative to Novu/Courier
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// Prices : Available plan prices.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct Prices {
#[serde(rename = "prices")]
pub prices: Vec<models::PriceTier>,
}
impl Prices {
/// Available plan prices.
pub fn new(prices: Vec<models::PriceTier>) -> Prices {
Prices {
prices,
}
}
}