pub trait MoneyTransferTrait {
    // Required methods
    fn get_amount(&self) -> &[AmountProperty];
    fn take_amount(&mut self) -> Vec<AmountProperty>;
    fn get_beneficiary_bank(&self) -> &[BeneficiaryBankProperty];
    fn take_beneficiary_bank(&mut self) -> Vec<BeneficiaryBankProperty>;
}
Expand description

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

Required Methods§

Implementors§