blob: 87d45224e9cd7ea7b0fa49e62480096479ca8147 [file] [log] [blame]
#![allow(unused_imports)]
#![allow(clippy::all)]
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
#[doc = "The `BasicCardType` enum."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `BasicCardType`*"]
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum BasicCardType {
Credit = "credit",
Debit = "debit",
Prepaid = "prepaid",
}