pub mod app_clips;
pub mod authentication;
pub mod car_play;
pub mod contacts;
pub mod deprecated_entitlements;
pub mod education;
pub mod exposure_notification;
pub mod games;
pub mod health;
pub mod home_automation;
pub mod hypervisor;
pub mod icloud;
pub mod networking;
pub mod push_notifications;
pub mod security;
pub mod sensors;
pub mod siri;
pub mod system;
pub mod tv;
pub mod wallet;
pub mod wireless_interfaces;
pub mod prelude {
pub use super::app_clips::*;
pub use super::authentication::*;
pub use super::car_play::*;
pub use super::contacts::*;
pub use super::deprecated_entitlements::*;
pub use super::education::*;
pub use super::exposure_notification::*;
pub use super::games::*;
pub use super::health::*;
pub use super::home_automation::*;
pub use super::hypervisor::*;
pub use super::icloud::*;
pub use super::networking::*;
pub use super::push_notifications::*;
pub use super::security::*;
pub use super::sensors::*;
pub use super::siri::*;
pub use super::system::*;
pub use super::tv::*;
pub use super::wallet::*;
pub use super::wireless_interfaces::*;
pub use super::Entitlements;
}
use prelude::*;
use serde::{Deserialize, Serialize};
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq, Eq, Default)]
pub struct Entitlements {
#[serde(flatten)]
pub authentication: Authentication,
#[serde(flatten)]
pub app_clips: AppClips,
#[serde(flatten)]
pub car_play: CarPlay,
#[serde(flatten)]
pub contacts: Contacts,
#[serde(flatten)]
pub education: Education,
#[serde(flatten)]
pub exposure_notification: ExposureNotification,
#[serde(flatten)]
pub games: Games,
#[serde(flatten)]
pub health: Health,
#[serde(flatten)]
pub home_automation: HomeAutomation,
#[serde(flatten)]
pub hypervisor: Hypervisor,
#[serde(flatten)]
pub icloud: ICloud,
#[serde(flatten)]
pub networking: Networking,
#[serde(flatten)]
pub push_notifications: PushNotifications,
#[serde(flatten)]
pub security: Security,
#[serde(flatten)]
pub sensors: Sensors,
#[serde(flatten)]
pub siri: Siri,
#[serde(flatten)]
pub system: System,
#[serde(flatten)]
pub tv: Tv,
#[serde(flatten)]
pub wallet: Wallet,
#[serde(flatten)]
pub wireless_interfaces: WirelessInterfaces,
#[serde(flatten)]
pub deprecated_entitlements: DeprecatedEntitlements,
}