127 lines
4.5 KiB
Rust
127 lines
4.5 KiB
Rust
#![allow(unused_imports)]
|
|
#![allow(clippy::all)]
|
|
use super::*;
|
|
use wasm_bindgen::prelude::*;
|
|
#[wasm_bindgen]
|
|
extern "C" {
|
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = BasicCardResponse)]
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
#[doc = "The `BasicCardResponse` dictionary."]
|
|
#[doc = ""]
|
|
#[doc = "*This API requires the following crate features to be activated: `BasicCardResponse`*"]
|
|
pub type BasicCardResponse;
|
|
}
|
|
impl BasicCardResponse {
|
|
#[doc = "Construct a new `BasicCardResponse`."]
|
|
#[doc = ""]
|
|
#[doc = "*This API requires the following crate features to be activated: `BasicCardResponse`*"]
|
|
pub fn new(card_number: &str) -> Self {
|
|
#[allow(unused_mut)]
|
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
|
ret.card_number(card_number);
|
|
ret
|
|
}
|
|
#[cfg(feature = "PaymentAddress")]
|
|
#[doc = "Change the `billingAddress` field of this object."]
|
|
#[doc = ""]
|
|
#[doc = "*This API requires the following crate features to be activated: `BasicCardResponse`, `PaymentAddress`*"]
|
|
pub fn billing_address(&mut self, val: Option<&PaymentAddress>) -> &mut Self {
|
|
use wasm_bindgen::JsValue;
|
|
let r = ::js_sys::Reflect::set(
|
|
self.as_ref(),
|
|
&JsValue::from("billingAddress"),
|
|
&JsValue::from(val),
|
|
);
|
|
debug_assert!(
|
|
r.is_ok(),
|
|
"setting properties should never fail on our dictionary objects"
|
|
);
|
|
let _ = r;
|
|
self
|
|
}
|
|
#[doc = "Change the `cardNumber` field of this object."]
|
|
#[doc = ""]
|
|
#[doc = "*This API requires the following crate features to be activated: `BasicCardResponse`*"]
|
|
pub fn card_number(&mut self, val: &str) -> &mut Self {
|
|
use wasm_bindgen::JsValue;
|
|
let r = ::js_sys::Reflect::set(
|
|
self.as_ref(),
|
|
&JsValue::from("cardNumber"),
|
|
&JsValue::from(val),
|
|
);
|
|
debug_assert!(
|
|
r.is_ok(),
|
|
"setting properties should never fail on our dictionary objects"
|
|
);
|
|
let _ = r;
|
|
self
|
|
}
|
|
#[doc = "Change the `cardSecurityCode` field of this object."]
|
|
#[doc = ""]
|
|
#[doc = "*This API requires the following crate features to be activated: `BasicCardResponse`*"]
|
|
pub fn card_security_code(&mut self, val: &str) -> &mut Self {
|
|
use wasm_bindgen::JsValue;
|
|
let r = ::js_sys::Reflect::set(
|
|
self.as_ref(),
|
|
&JsValue::from("cardSecurityCode"),
|
|
&JsValue::from(val),
|
|
);
|
|
debug_assert!(
|
|
r.is_ok(),
|
|
"setting properties should never fail on our dictionary objects"
|
|
);
|
|
let _ = r;
|
|
self
|
|
}
|
|
#[doc = "Change the `cardholderName` field of this object."]
|
|
#[doc = ""]
|
|
#[doc = "*This API requires the following crate features to be activated: `BasicCardResponse`*"]
|
|
pub fn cardholder_name(&mut self, val: &str) -> &mut Self {
|
|
use wasm_bindgen::JsValue;
|
|
let r = ::js_sys::Reflect::set(
|
|
self.as_ref(),
|
|
&JsValue::from("cardholderName"),
|
|
&JsValue::from(val),
|
|
);
|
|
debug_assert!(
|
|
r.is_ok(),
|
|
"setting properties should never fail on our dictionary objects"
|
|
);
|
|
let _ = r;
|
|
self
|
|
}
|
|
#[doc = "Change the `expiryMonth` field of this object."]
|
|
#[doc = ""]
|
|
#[doc = "*This API requires the following crate features to be activated: `BasicCardResponse`*"]
|
|
pub fn expiry_month(&mut self, val: &str) -> &mut Self {
|
|
use wasm_bindgen::JsValue;
|
|
let r = ::js_sys::Reflect::set(
|
|
self.as_ref(),
|
|
&JsValue::from("expiryMonth"),
|
|
&JsValue::from(val),
|
|
);
|
|
debug_assert!(
|
|
r.is_ok(),
|
|
"setting properties should never fail on our dictionary objects"
|
|
);
|
|
let _ = r;
|
|
self
|
|
}
|
|
#[doc = "Change the `expiryYear` field of this object."]
|
|
#[doc = ""]
|
|
#[doc = "*This API requires the following crate features to be activated: `BasicCardResponse`*"]
|
|
pub fn expiry_year(&mut self, val: &str) -> &mut Self {
|
|
use wasm_bindgen::JsValue;
|
|
let r = ::js_sys::Reflect::set(
|
|
self.as_ref(),
|
|
&JsValue::from("expiryYear"),
|
|
&JsValue::from(val),
|
|
);
|
|
debug_assert!(
|
|
r.is_ok(),
|
|
"setting properties should never fail on our dictionary objects"
|
|
);
|
|
let _ = r;
|
|
self
|
|
}
|
|
}
|