use core::ffi::*;
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 INSendPaymentIntentResponseCode(pub NSInteger);
impl INSendPaymentIntentResponseCode {
#[doc(alias = "INSendPaymentIntentResponseCodeUnspecified")]
pub const Unspecified: Self = Self(0);
#[doc(alias = "INSendPaymentIntentResponseCodeReady")]
pub const Ready: Self = Self(1);
#[doc(alias = "INSendPaymentIntentResponseCodeInProgress")]
pub const InProgress: Self = Self(2);
#[doc(alias = "INSendPaymentIntentResponseCodeSuccess")]
pub const Success: Self = Self(3);
#[doc(alias = "INSendPaymentIntentResponseCodeFailure")]
pub const Failure: Self = Self(4);
#[doc(alias = "INSendPaymentIntentResponseCodeFailureRequiringAppLaunch")]
pub const FailureRequiringAppLaunch: Self = Self(5);
#[doc(alias = "INSendPaymentIntentResponseCodeFailureCredentialsUnverified")]
pub const FailureCredentialsUnverified: Self = Self(6);
#[doc(alias = "INSendPaymentIntentResponseCodeFailurePaymentsAmountBelowMinimum")]
pub const FailurePaymentsAmountBelowMinimum: Self = Self(7);
#[doc(alias = "INSendPaymentIntentResponseCodeFailurePaymentsAmountAboveMaximum")]
pub const FailurePaymentsAmountAboveMaximum: Self = Self(8);
#[doc(alias = "INSendPaymentIntentResponseCodeFailurePaymentsCurrencyUnsupported")]
pub const FailurePaymentsCurrencyUnsupported: Self = Self(9);
#[doc(alias = "INSendPaymentIntentResponseCodeFailureInsufficientFunds")]
pub const FailureInsufficientFunds: Self = Self(10);
#[doc(alias = "INSendPaymentIntentResponseCodeFailureNoBankAccount")]
pub const FailureNoBankAccount: Self = Self(11);
#[doc(alias = "INSendPaymentIntentResponseCodeFailureNotEligible")]
pub const FailureNotEligible: Self = Self(12);
#[doc(alias = "INSendPaymentIntentResponseCodeFailureTermsAndConditionsAcceptanceRequired")]
pub const FailureTermsAndConditionsAcceptanceRequired: Self = Self(13);
}
unsafe impl Encode for INSendPaymentIntentResponseCode {
const ENCODING: Encoding = NSInteger::ENCODING;
}
unsafe impl RefEncode for INSendPaymentIntentResponseCode {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}
extern_class!(
#[unsafe(super(INIntentResponse, NSObject))]
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(feature = "INIntentResponse")]
pub struct INSendPaymentIntentResponse;
);
#[cfg(feature = "INIntentResponse")]
extern_conformance!(
unsafe impl NSCoding for INSendPaymentIntentResponse {}
);
#[cfg(feature = "INIntentResponse")]
extern_conformance!(
unsafe impl NSCopying for INSendPaymentIntentResponse {}
);
#[cfg(feature = "INIntentResponse")]
unsafe impl CopyingHelper for INSendPaymentIntentResponse {
type Result = Self;
}
#[cfg(feature = "INIntentResponse")]
extern_conformance!(
unsafe impl NSObjectProtocol for INSendPaymentIntentResponse {}
);
#[cfg(feature = "INIntentResponse")]
extern_conformance!(
unsafe impl NSSecureCoding for INSendPaymentIntentResponse {}
);
#[cfg(feature = "INIntentResponse")]
impl INSendPaymentIntentResponse {
extern_methods!(
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
#[unsafe(method(initWithCode:userActivity:))]
#[unsafe(method_family = init)]
pub unsafe fn initWithCode_userActivity(
this: Allocated<Self>,
code: INSendPaymentIntentResponseCode,
user_activity: Option<&NSUserActivity>,
) -> Retained<Self>;
#[unsafe(method(code))]
#[unsafe(method_family = none)]
pub unsafe fn code(&self) -> INSendPaymentIntentResponseCode;
#[cfg(feature = "INPaymentRecord")]
#[unsafe(method(paymentRecord))]
#[unsafe(method_family = none)]
pub unsafe fn paymentRecord(&self) -> Option<Retained<INPaymentRecord>>;
#[cfg(feature = "INPaymentRecord")]
#[unsafe(method(setPaymentRecord:))]
#[unsafe(method_family = none)]
pub unsafe fn setPaymentRecord(&self, payment_record: Option<&INPaymentRecord>);
);
}
#[cfg(feature = "INIntentResponse")]
impl INSendPaymentIntentResponse {
extern_methods!(
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub unsafe fn new() -> Retained<Self>;
);
}