blob: 9b7784a8e0557789a9bbccdcdc797ea9b5fabc61 [file] [log] [blame]
#![allow(unused_imports)]
use super::*;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = PushSubscriptionInit)]
#[derive(Debug, Clone, PartialEq, Eq)]
#[doc = "The `PushSubscriptionInit` dictionary."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `PushSubscriptionInit`*"]
pub type PushSubscriptionInit;
}
impl PushSubscriptionInit {
#[doc = "Construct a new `PushSubscriptionInit`."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `PushSubscriptionInit`*"]
pub fn new(endpoint: &str, scope: &str) -> Self {
#[allow(unused_mut)]
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
ret.endpoint(endpoint);
ret.scope(scope);
ret
}
#[doc = "Change the `appServerKey` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `PushSubscriptionInit`*"]
pub fn app_server_key(&mut self, val: Option<&::js_sys::Object>) -> &mut Self {
use wasm_bindgen::JsValue;
let r = ::js_sys::Reflect::set(
self.as_ref(),
&JsValue::from("appServerKey"),
&JsValue::from(val),
);
debug_assert!(
r.is_ok(),
"setting properties should never fail on our dictionary objects"
);
let _ = r;
self
}
#[doc = "Change the `authSecret` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `PushSubscriptionInit`*"]
pub fn auth_secret(&mut self, val: Option<&::js_sys::ArrayBuffer>) -> &mut Self {
use wasm_bindgen::JsValue;
let r = ::js_sys::Reflect::set(
self.as_ref(),
&JsValue::from("authSecret"),
&JsValue::from(val),
);
debug_assert!(
r.is_ok(),
"setting properties should never fail on our dictionary objects"
);
let _ = r;
self
}
#[doc = "Change the `endpoint` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `PushSubscriptionInit`*"]
pub fn endpoint(&mut self, val: &str) -> &mut Self {
use wasm_bindgen::JsValue;
let r = ::js_sys::Reflect::set(
self.as_ref(),
&JsValue::from("endpoint"),
&JsValue::from(val),
);
debug_assert!(
r.is_ok(),
"setting properties should never fail on our dictionary objects"
);
let _ = r;
self
}
#[doc = "Change the `p256dhKey` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `PushSubscriptionInit`*"]
pub fn p256dh_key(&mut self, val: Option<&::js_sys::ArrayBuffer>) -> &mut Self {
use wasm_bindgen::JsValue;
let r = ::js_sys::Reflect::set(
self.as_ref(),
&JsValue::from("p256dhKey"),
&JsValue::from(val),
);
debug_assert!(
r.is_ok(),
"setting properties should never fail on our dictionary objects"
);
let _ = r;
self
}
#[doc = "Change the `scope` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `PushSubscriptionInit`*"]
pub fn scope(&mut self, val: &str) -> &mut Self {
use wasm_bindgen::JsValue;
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("scope"), &JsValue::from(val));
debug_assert!(
r.is_ok(),
"setting properties should never fail on our dictionary objects"
);
let _ = r;
self
}
}