lago_types/responses/customer_usage.rs
1use crate::models::CustomerUsage;
2use serde::{Deserialize, Serialize};
3
4/// Response containing customer current usage data.
5///
6/// This struct represents the API response for retrieving the current usage
7/// data for a customer's subscription within the billing period.
8#[derive(Debug, Clone, Serialize, Deserialize)]
9pub struct GetCustomerCurrentUsageResponse {
10 pub customer_usage: CustomerUsage,
11}