use crate::params::{Expandable};
use crate::resources::{Account, Customer};
use serde::{Deserialize, Serialize};
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
pub struct BankConnectionsResourceAccountholder {
#[serde(skip_serializing_if = "Option::is_none")]
pub account: Option<Expandable<Account>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub customer: Option<Expandable<Customer>>,
#[serde(rename = "type")]
pub type_: BankConnectionsResourceAccountholderType,
}
#[derive(Copy, Clone, Debug, Deserialize, Serialize, Eq, PartialEq)]
#[serde(rename_all = "snake_case")]
pub enum BankConnectionsResourceAccountholderType {
Account,
Customer,
}
impl BankConnectionsResourceAccountholderType {
pub fn as_str(self) -> &'static str {
match self {
BankConnectionsResourceAccountholderType::Account => "account",
BankConnectionsResourceAccountholderType::Customer => "customer",
}
}
}
impl AsRef<str> for BankConnectionsResourceAccountholderType {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl std::fmt::Display for BankConnectionsResourceAccountholderType {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
self.as_str().fmt(f)
}
}
impl std::default::Default for BankConnectionsResourceAccountholderType {
fn default() -> Self {
Self::Account
}
}