use core::ptr::NonNull;
use objc2::__framework_prelude::*;
use objc2_foundation::*;
use crate::*;
#[deprecated = "INSaveProfileInCarIntent is deprecated. There is no replacement."]
#[cfg(all(feature = "INIntent", feature = "INSaveProfileInCarIntent"))]
impl INSaveProfileInCarIntent {
extern_methods!(
#[deprecated = "Use `-initWithProfileNumber:profileName:` method instead."]
#[unsafe(method(initWithProfileNumber:profileLabel:))]
#[unsafe(method_family = init)]
pub unsafe fn initWithProfileNumber_profileLabel(
this: Allocated<Self>,
profile_number: Option<&NSNumber>,
profile_label: Option<&NSString>,
) -> Retained<Self>;
#[deprecated = "Use `profileName` property instead."]
#[unsafe(method(profileLabel))]
#[unsafe(method_family = none)]
pub unsafe fn profileLabel(&self) -> Option<Retained<NSString>>;
);
}