use serde::{Deserialize, Serialize};
/// Collection version settings. Unlike the payload settings, the version
/// settings aren't needed for the runtime and aren't sent to the clients,
/// however also affect the collection versioning.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct VersionSettings {
/// Packages settings object.
pub packages: Option<super::package::PackagesSettings>,
}