#[allow(unused_imports)]
use crate::models;
#[allow(unused_imports)]
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct FeedStatistics {
#[serde(rename = "amountOfFeeds")]
pub amount_of_feeds: i64,
#[serde(rename = "amountOfNotificationDay")]
pub amount_of_notification_day: i64,
#[serde(rename = "amountOfNotificationWeek")]
pub amount_of_notification_week: i64,
#[serde(rename = "amountOfNotificationMonth")]
pub amount_of_notification_month: i64,
}
impl FeedStatistics {
pub fn new(amount_of_feeds: i64, amount_of_notification_day: i64, amount_of_notification_week: i64, amount_of_notification_month: i64) -> FeedStatistics {
FeedStatistics {
amount_of_feeds,
amount_of_notification_day,
amount_of_notification_week,
amount_of_notification_month,
}
}
}