/*
* Bitwarden Internal API
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: latest
*
* Generated by: https://openapi-generator.tech
*/
#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct BillingSubscriptionUpcomingInvoice {
#[serde(rename = "amount", skip_serializing_if = "Option::is_none")]
pub amount: Option<f64>,
#[serde(rename = "date", skip_serializing_if = "Option::is_none")]
pub date: Option<String>,
}
impl BillingSubscriptionUpcomingInvoice {
pub fn new() -> BillingSubscriptionUpcomingInvoice {
BillingSubscriptionUpcomingInvoice {
amount: None,
date: None,
}
}
}