use crate::common::*;
use crate::CallKit::*;
use crate::Foundation::*;
extern_class!(
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(feature = "CallKit_CXCallUpdate")]
pub struct CXCallUpdate;
#[cfg(feature = "CallKit_CXCallUpdate")]
unsafe impl ClassType for CXCallUpdate {
type Super = NSObject;
type Mutability = InteriorMutable;
}
);
#[cfg(feature = "CallKit_CXCallUpdate")]
unsafe impl NSCopying for CXCallUpdate {}
#[cfg(feature = "CallKit_CXCallUpdate")]
unsafe impl NSObjectProtocol for CXCallUpdate {}
extern_methods!(
#[cfg(feature = "CallKit_CXCallUpdate")]
unsafe impl CXCallUpdate {
#[cfg(feature = "CallKit_CXHandle")]
#[method_id(@__retain_semantics Other remoteHandle)]
pub unsafe fn remoteHandle(&self) -> Option<Id<CXHandle>>;
#[cfg(feature = "CallKit_CXHandle")]
#[method(setRemoteHandle:)]
pub unsafe fn setRemoteHandle(&self, remote_handle: Option<&CXHandle>);
#[cfg(feature = "Foundation_NSString")]
#[method_id(@__retain_semantics Other localizedCallerName)]
pub unsafe fn localizedCallerName(&self) -> Option<Id<NSString>>;
#[cfg(feature = "Foundation_NSString")]
#[method(setLocalizedCallerName:)]
pub unsafe fn setLocalizedCallerName(&self, localized_caller_name: Option<&NSString>);
#[method(supportsHolding)]
pub unsafe fn supportsHolding(&self) -> bool;
#[method(setSupportsHolding:)]
pub unsafe fn setSupportsHolding(&self, supports_holding: bool);
#[method(supportsGrouping)]
pub unsafe fn supportsGrouping(&self) -> bool;
#[method(setSupportsGrouping:)]
pub unsafe fn setSupportsGrouping(&self, supports_grouping: bool);
#[method(supportsUngrouping)]
pub unsafe fn supportsUngrouping(&self) -> bool;
#[method(setSupportsUngrouping:)]
pub unsafe fn setSupportsUngrouping(&self, supports_ungrouping: bool);
#[method(supportsDTMF)]
pub unsafe fn supportsDTMF(&self) -> bool;
#[method(setSupportsDTMF:)]
pub unsafe fn setSupportsDTMF(&self, supports_dtmf: bool);
#[method(hasVideo)]
pub unsafe fn hasVideo(&self) -> bool;
#[method(setHasVideo:)]
pub unsafe fn setHasVideo(&self, has_video: bool);
}
);
extern_methods!(
#[cfg(feature = "CallKit_CXCallUpdate")]
unsafe impl CXCallUpdate {
#[method_id(@__retain_semantics Init init)]
pub unsafe fn init(this: Allocated<Self>) -> Id<Self>;
#[method_id(@__retain_semantics New new)]
pub unsafe fn new() -> Id<Self>;
}
);