use objc2::__framework_prelude::*;
use objc2_app_kit::*;
use objc2_foundation::*;
use crate::*;
extern_class!(
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct ASAuthorizationWebBrowserPlatformPublicKeyCredential;
unsafe impl ClassType for ASAuthorizationWebBrowserPlatformPublicKeyCredential {
type Super = NSObject;
type Mutability = InteriorMutable;
}
);
unsafe impl NSObjectProtocol for ASAuthorizationWebBrowserPlatformPublicKeyCredential {}
extern_methods!(
unsafe impl ASAuthorizationWebBrowserPlatformPublicKeyCredential {
#[method_id(@__retain_semantics New new)]
pub unsafe fn new() -> Id<Self>;
#[method_id(@__retain_semantics Init init)]
pub unsafe fn init(this: Allocated<Self>) -> Id<Self>;
#[method_id(@__retain_semantics Other name)]
pub unsafe fn name(&self) -> Id<NSString>;
#[method_id(@__retain_semantics Other customTitle)]
pub unsafe fn customTitle(&self) -> Option<Id<NSString>>;
#[method_id(@__retain_semantics Other relyingParty)]
pub unsafe fn relyingParty(&self) -> Id<NSString>;
#[method_id(@__retain_semantics Other credentialID)]
pub unsafe fn credentialID(&self) -> Id<NSData>;
#[method_id(@__retain_semantics Other userHandle)]
pub unsafe fn userHandle(&self) -> Id<NSData>;
#[method_id(@__retain_semantics Other providerName)]
pub unsafe fn providerName(&self) -> Id<NSString>;
}
);