#![allow(unused_imports)]
#![allow(clippy::all)]
use super::*;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = PublicKeyCredentialCreationOptions)]
#[derive(Debug, Clone, PartialEq, Eq)]
#[doc = "The `PublicKeyCredentialCreationOptions` dictionary."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialCreationOptions`*"]
pub type PublicKeyCredentialCreationOptions;
#[cfg(feature = "AttestationConveyancePreference")]
#[doc = "Get the `attestation` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `AttestationConveyancePreference`, `PublicKeyCredentialCreationOptions`*"]
#[wasm_bindgen(method, getter = "attestation")]
pub fn get_attestation(
this: &PublicKeyCredentialCreationOptions,
) -> Option<AttestationConveyancePreference>;
#[cfg(feature = "AttestationConveyancePreference")]
#[doc = "Change the `attestation` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `AttestationConveyancePreference`, `PublicKeyCredentialCreationOptions`*"]
#[wasm_bindgen(method, setter = "attestation")]
pub fn set_attestation(
this: &PublicKeyCredentialCreationOptions,
val: AttestationConveyancePreference,
);
#[cfg(web_sys_unstable_apis)]
#[doc = "Get the `attestationFormats` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialCreationOptions`*"]
#[doc = ""]
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
#[wasm_bindgen(method, getter = "attestationFormats")]
pub fn get_attestation_formats(
this: &PublicKeyCredentialCreationOptions,
) -> Option<::js_sys::Array>;
#[cfg(web_sys_unstable_apis)]
#[doc = "Change the `attestationFormats` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialCreationOptions`*"]
#[doc = ""]
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
#[wasm_bindgen(method, setter = "attestationFormats")]
pub fn set_attestation_formats(
this: &PublicKeyCredentialCreationOptions,
val: &::wasm_bindgen::JsValue,
);
#[cfg(feature = "AuthenticatorSelectionCriteria")]
#[doc = "Get the `authenticatorSelection` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `AuthenticatorSelectionCriteria`, `PublicKeyCredentialCreationOptions`*"]
#[wasm_bindgen(method, getter = "authenticatorSelection")]
pub fn get_authenticator_selection(
this: &PublicKeyCredentialCreationOptions,
) -> Option<AuthenticatorSelectionCriteria>;
#[cfg(feature = "AuthenticatorSelectionCriteria")]
#[doc = "Change the `authenticatorSelection` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `AuthenticatorSelectionCriteria`, `PublicKeyCredentialCreationOptions`*"]
#[wasm_bindgen(method, setter = "authenticatorSelection")]
pub fn set_authenticator_selection(
this: &PublicKeyCredentialCreationOptions,
val: &AuthenticatorSelectionCriteria,
);
#[doc = "Get the `challenge` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialCreationOptions`*"]
#[wasm_bindgen(method, getter = "challenge")]
pub fn get_challenge(this: &PublicKeyCredentialCreationOptions) -> ::js_sys::Object;
#[doc = "Change the `challenge` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialCreationOptions`*"]
#[wasm_bindgen(method, setter = "challenge")]
pub fn set_challenge(this: &PublicKeyCredentialCreationOptions, val: &::js_sys::Object);
#[doc = "Get the `excludeCredentials` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialCreationOptions`*"]
#[wasm_bindgen(method, getter = "excludeCredentials")]
pub fn get_exclude_credentials(
this: &PublicKeyCredentialCreationOptions,
) -> Option<::js_sys::Array>;
#[doc = "Change the `excludeCredentials` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialCreationOptions`*"]
#[wasm_bindgen(method, setter = "excludeCredentials")]
pub fn set_exclude_credentials(
this: &PublicKeyCredentialCreationOptions,
val: &::wasm_bindgen::JsValue,
);
#[cfg(feature = "AuthenticationExtensionsClientInputs")]
#[doc = "Get the `extensions` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `AuthenticationExtensionsClientInputs`, `PublicKeyCredentialCreationOptions`*"]
#[wasm_bindgen(method, getter = "extensions")]
pub fn get_extensions(
this: &PublicKeyCredentialCreationOptions,
) -> Option<AuthenticationExtensionsClientInputs>;
#[cfg(feature = "AuthenticationExtensionsClientInputs")]
#[doc = "Change the `extensions` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `AuthenticationExtensionsClientInputs`, `PublicKeyCredentialCreationOptions`*"]
#[wasm_bindgen(method, setter = "extensions")]
pub fn set_extensions(
this: &PublicKeyCredentialCreationOptions,
val: &AuthenticationExtensionsClientInputs,
);
#[cfg(web_sys_unstable_apis)]
#[doc = "Get the `hints` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialCreationOptions`*"]
#[doc = ""]
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
#[wasm_bindgen(method, getter = "hints")]
pub fn get_hints(this: &PublicKeyCredentialCreationOptions) -> Option<::js_sys::Array>;
#[cfg(web_sys_unstable_apis)]
#[doc = "Change the `hints` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialCreationOptions`*"]
#[doc = ""]
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
#[wasm_bindgen(method, setter = "hints")]
pub fn set_hints(this: &PublicKeyCredentialCreationOptions, val: &::wasm_bindgen::JsValue);
#[doc = "Get the `pubKeyCredParams` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialCreationOptions`*"]
#[wasm_bindgen(method, getter = "pubKeyCredParams")]
pub fn get_pub_key_cred_params(this: &PublicKeyCredentialCreationOptions) -> ::js_sys::Array;
#[doc = "Change the `pubKeyCredParams` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialCreationOptions`*"]
#[wasm_bindgen(method, setter = "pubKeyCredParams")]
pub fn set_pub_key_cred_params(
this: &PublicKeyCredentialCreationOptions,
val: &::wasm_bindgen::JsValue,
);
#[cfg(feature = "PublicKeyCredentialRpEntity")]
#[doc = "Get the `rp` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialCreationOptions`, `PublicKeyCredentialRpEntity`*"]
#[wasm_bindgen(method, getter = "rp")]
pub fn get_rp(this: &PublicKeyCredentialCreationOptions) -> PublicKeyCredentialRpEntity;
#[cfg(feature = "PublicKeyCredentialRpEntity")]
#[doc = "Change the `rp` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialCreationOptions`, `PublicKeyCredentialRpEntity`*"]
#[wasm_bindgen(method, setter = "rp")]
pub fn set_rp(this: &PublicKeyCredentialCreationOptions, val: &PublicKeyCredentialRpEntity);
#[doc = "Get the `timeout` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialCreationOptions`*"]
#[wasm_bindgen(method, getter = "timeout")]
pub fn get_timeout(this: &PublicKeyCredentialCreationOptions) -> Option<u32>;
#[doc = "Change the `timeout` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialCreationOptions`*"]
#[wasm_bindgen(method, setter = "timeout")]
pub fn set_timeout(this: &PublicKeyCredentialCreationOptions, val: u32);
#[cfg(feature = "PublicKeyCredentialUserEntity")]
#[doc = "Get the `user` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialCreationOptions`, `PublicKeyCredentialUserEntity`*"]
#[wasm_bindgen(method, getter = "user")]
pub fn get_user(this: &PublicKeyCredentialCreationOptions) -> PublicKeyCredentialUserEntity;
#[cfg(feature = "PublicKeyCredentialUserEntity")]
#[doc = "Change the `user` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialCreationOptions`, `PublicKeyCredentialUserEntity`*"]
#[wasm_bindgen(method, setter = "user")]
pub fn set_user(this: &PublicKeyCredentialCreationOptions, val: &PublicKeyCredentialUserEntity);
}
impl PublicKeyCredentialCreationOptions {
#[cfg(all(
feature = "PublicKeyCredentialRpEntity",
feature = "PublicKeyCredentialUserEntity",
))]
#[doc = "Construct a new `PublicKeyCredentialCreationOptions`."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `PublicKeyCredentialCreationOptions`, `PublicKeyCredentialRpEntity`, `PublicKeyCredentialUserEntity`*"]
pub fn new(
challenge: &::js_sys::Object,
pub_key_cred_params: &::wasm_bindgen::JsValue,
rp: &PublicKeyCredentialRpEntity,
user: &PublicKeyCredentialUserEntity,
) -> Self {
#[allow(unused_mut)]
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
ret.challenge(challenge);
ret.pub_key_cred_params(pub_key_cred_params);
ret.rp(rp);
ret.user(user);
ret
}
#[cfg(feature = "AttestationConveyancePreference")]
#[deprecated = "Use `set_attestation()` instead."]
pub fn attestation(&mut self, val: AttestationConveyancePreference) -> &mut Self {
self.set_attestation(val);
self
}
#[cfg(web_sys_unstable_apis)]
#[deprecated = "Use `set_attestation_formats()` instead."]
pub fn attestation_formats(&mut self, val: &::wasm_bindgen::JsValue) -> &mut Self {
self.set_attestation_formats(val);
self
}
#[cfg(feature = "AuthenticatorSelectionCriteria")]
#[deprecated = "Use `set_authenticator_selection()` instead."]
pub fn authenticator_selection(&mut self, val: &AuthenticatorSelectionCriteria) -> &mut Self {
self.set_authenticator_selection(val);
self
}
#[deprecated = "Use `set_challenge()` instead."]
pub fn challenge(&mut self, val: &::js_sys::Object) -> &mut Self {
self.set_challenge(val);
self
}
#[deprecated = "Use `set_exclude_credentials()` instead."]
pub fn exclude_credentials(&mut self, val: &::wasm_bindgen::JsValue) -> &mut Self {
self.set_exclude_credentials(val);
self
}
#[cfg(feature = "AuthenticationExtensionsClientInputs")]
#[deprecated = "Use `set_extensions()` instead."]
pub fn extensions(&mut self, val: &AuthenticationExtensionsClientInputs) -> &mut Self {
self.set_extensions(val);
self
}
#[cfg(web_sys_unstable_apis)]
#[deprecated = "Use `set_hints()` instead."]
pub fn hints(&mut self, val: &::wasm_bindgen::JsValue) -> &mut Self {
self.set_hints(val);
self
}
#[deprecated = "Use `set_pub_key_cred_params()` instead."]
pub fn pub_key_cred_params(&mut self, val: &::wasm_bindgen::JsValue) -> &mut Self {
self.set_pub_key_cred_params(val);
self
}
#[cfg(feature = "PublicKeyCredentialRpEntity")]
#[deprecated = "Use `set_rp()` instead."]
pub fn rp(&mut self, val: &PublicKeyCredentialRpEntity) -> &mut Self {
self.set_rp(val);
self
}
#[deprecated = "Use `set_timeout()` instead."]
pub fn timeout(&mut self, val: u32) -> &mut Self {
self.set_timeout(val);
self
}
#[cfg(feature = "PublicKeyCredentialUserEntity")]
#[deprecated = "Use `set_user()` instead."]
pub fn user(&mut self, val: &PublicKeyCredentialUserEntity) -> &mut Self {
self.set_user(val);
self
}
}