use core::ptr::NonNull;
use objc2::__framework_prelude::*;
use objc2_foundation::*;
use crate::*;
extern_class!(
#[unsafe(super(NSObject))]
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct HKDeletedObject;
);
unsafe impl Send for HKDeletedObject {}
unsafe impl Sync for HKDeletedObject {}
extern_conformance!(
unsafe impl NSCoding for HKDeletedObject {}
);
extern_conformance!(
unsafe impl NSObjectProtocol for HKDeletedObject {}
);
extern_conformance!(
unsafe impl NSSecureCoding for HKDeletedObject {}
);
impl HKDeletedObject {
extern_methods!(
#[unsafe(method(UUID))]
#[unsafe(method_family = none)]
pub unsafe fn UUID(&self) -> Retained<NSUUID>;
#[unsafe(method(metadata))]
#[unsafe(method_family = none)]
pub unsafe fn metadata(&self) -> Option<Retained<NSDictionary<NSString, AnyObject>>>;
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
);
}
impl HKDeletedObject {
extern_methods!(
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub unsafe fn new() -> Retained<Self>;
);
}