use core::ptr::NonNull;
use objc2::__framework_prelude::*;
use objc2_foundation::*;
use crate::*;
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct INAddTasksTargetTaskListConfirmationReason(pub NSInteger);
impl INAddTasksTargetTaskListConfirmationReason {
#[doc(alias = "INAddTasksTargetTaskListConfirmationReasonListShouldBeCreated")]
pub const ListShouldBeCreated: Self = Self(1);
}
unsafe impl Encode for INAddTasksTargetTaskListConfirmationReason {
const ENCODING: Encoding = NSInteger::ENCODING;
}
unsafe impl RefEncode for INAddTasksTargetTaskListConfirmationReason {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}
extern_class!(
#[unsafe(super(INTaskListResolutionResult, INIntentResolutionResult, NSObject))]
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(all(
feature = "INIntentResolutionResult",
feature = "INTaskListResolutionResult"
))]
pub struct INAddTasksTargetTaskListResolutionResult;
);
#[cfg(all(
feature = "INIntentResolutionResult",
feature = "INTaskListResolutionResult"
))]
extern_conformance!(
unsafe impl NSObjectProtocol for INAddTasksTargetTaskListResolutionResult {}
);
#[cfg(all(
feature = "INIntentResolutionResult",
feature = "INTaskListResolutionResult"
))]
impl INAddTasksTargetTaskListResolutionResult {
extern_methods!(
#[cfg(feature = "INTaskList")]
#[unsafe(method(confirmationRequiredWithTaskListToConfirm:forReason:))]
#[unsafe(method_family = none)]
pub unsafe fn confirmationRequiredWithTaskListToConfirm_forReason(
task_list_to_confirm: Option<&INTaskList>,
reason: INAddTasksTargetTaskListConfirmationReason,
) -> Retained<Self>;
#[unsafe(method(initWithTaskListResolutionResult:))]
#[unsafe(method_family = init)]
pub unsafe fn initWithTaskListResolutionResult(
this: Allocated<Self>,
task_list_resolution_result: &INTaskListResolutionResult,
) -> Retained<Self>;
);
}
#[cfg(all(
feature = "INIntentResolutionResult",
feature = "INTaskListResolutionResult"
))]
impl INAddTasksTargetTaskListResolutionResult {
extern_methods!(
#[cfg(feature = "INTaskList")]
#[unsafe(method(successWithResolvedTaskList:))]
#[unsafe(method_family = none)]
pub unsafe fn successWithResolvedTaskList(
resolved_task_list: &INTaskList,
) -> Retained<Self>;
#[cfg(feature = "INTaskList")]
#[unsafe(method(disambiguationWithTaskListsToDisambiguate:))]
#[unsafe(method_family = none)]
pub unsafe fn disambiguationWithTaskListsToDisambiguate(
task_lists_to_disambiguate: &NSArray<INTaskList>,
) -> Retained<Self>;
#[cfg(feature = "INTaskList")]
#[unsafe(method(confirmationRequiredWithTaskListToConfirm:))]
#[unsafe(method_family = none)]
pub unsafe fn confirmationRequiredWithTaskListToConfirm(
task_list_to_confirm: Option<&INTaskList>,
) -> Retained<Self>;
);
}
#[cfg(all(
feature = "INIntentResolutionResult",
feature = "INTaskListResolutionResult"
))]
impl INAddTasksTargetTaskListResolutionResult {
extern_methods!(
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
#[unsafe(method(needsValue))]
#[unsafe(method_family = none)]
pub unsafe fn needsValue() -> Retained<Self>;
#[unsafe(method(notRequired))]
#[unsafe(method_family = none)]
pub unsafe fn notRequired() -> Retained<Self>;
#[unsafe(method(unsupported))]
#[unsafe(method_family = none)]
pub unsafe fn unsupported() -> Retained<Self>;
);
}
#[cfg(all(
feature = "INIntentResolutionResult",
feature = "INTaskListResolutionResult"
))]
impl INAddTasksTargetTaskListResolutionResult {
extern_methods!(
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub unsafe fn new() -> Retained<Self>;
);
}