use crate::common::*;
use crate::CoreLocation::*;
use crate::Foundation::*;
use crate::HealthKit::*;
use crate::UniformTypeIdentifiers::*;
extern_class!(
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(feature = "HealthKit_HKDeletedObject")]
pub struct HKDeletedObject;
#[cfg(feature = "HealthKit_HKDeletedObject")]
unsafe impl ClassType for HKDeletedObject {
type Super = NSObject;
type Mutability = InteriorMutable;
}
);
#[cfg(feature = "HealthKit_HKDeletedObject")]
unsafe impl NSCoding for HKDeletedObject {}
#[cfg(feature = "HealthKit_HKDeletedObject")]
unsafe impl NSObjectProtocol for HKDeletedObject {}
#[cfg(feature = "HealthKit_HKDeletedObject")]
unsafe impl NSSecureCoding for HKDeletedObject {}
extern_methods!(
#[cfg(feature = "HealthKit_HKDeletedObject")]
unsafe impl HKDeletedObject {
#[cfg(feature = "Foundation_NSUUID")]
#[method_id(@__retain_semantics Other UUID)]
pub unsafe fn UUID(&self) -> Id<NSUUID>;
#[cfg(all(feature = "Foundation_NSDictionary", feature = "Foundation_NSString"))]
#[method_id(@__retain_semantics Other metadata)]
pub unsafe fn metadata(&self) -> Option<Id<NSDictionary<NSString, AnyObject>>>;
#[method_id(@__retain_semantics Init init)]
pub unsafe fn init(this: Allocated<Self>) -> Id<Self>;
}
);
extern_methods!(
#[cfg(feature = "HealthKit_HKDeletedObject")]
unsafe impl HKDeletedObject {
#[method_id(@__retain_semantics New new)]
pub unsafe fn new() -> Id<Self>;
}
);