use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ActionsCacheList {
#[serde(rename = "total_count")]
pub total_count: i32,
#[serde(rename = "actions_caches")]
pub actions_caches: Vec<models::ActionsCacheListActionsCachesInner>,
}
impl ActionsCacheList {
pub fn new(total_count: i32, actions_caches: Vec<models::ActionsCacheListActionsCachesInner>) -> ActionsCacheList {
ActionsCacheList {
total_count,
actions_caches,
}
}
}