pub trait BankAccountTrait {
    // Required methods
    fn get_account_minimum_inflow(&self) -> &[AccountMinimumInflowProperty];
    fn take_account_minimum_inflow(
        &mut self
    ) -> Vec<AccountMinimumInflowProperty>;
    fn get_account_overdraft_limit(&self) -> &[AccountOverdraftLimitProperty];
    fn take_account_overdraft_limit(
        &mut self
    ) -> Vec<AccountOverdraftLimitProperty>;
    fn get_bank_account_type(&self) -> &[BankAccountTypeProperty];
    fn take_bank_account_type(&mut self) -> Vec<BankAccountTypeProperty>;
}
Expand description

This trait is for properties from https://schema.org/BankAccount.

Required Methods§

Implementors§