bitwarden_api_api/models/
billing_payment_response_model.rsuse serde::{Deserialize, Serialize};
use crate::models;
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct BillingPaymentResponseModel {
#[serde(rename = "object", skip_serializing_if = "Option::is_none")]
pub object: Option<String>,
#[serde(rename = "balance", skip_serializing_if = "Option::is_none")]
pub balance: Option<f64>,
#[serde(rename = "paymentSource", skip_serializing_if = "Option::is_none")]
pub payment_source: Option<Box<models::BillingSource>>,
}
impl BillingPaymentResponseModel {
pub fn new() -> BillingPaymentResponseModel {
BillingPaymentResponseModel {
object: None,
balance: None,
payment_source: None,
}
}
}