pub trait FinancialProductTrait {
    // Required methods
    fn get_annual_percentage_rate(&self) -> &[AnnualPercentageRateProperty];
    fn take_annual_percentage_rate(
        &mut self
    ) -> Vec<AnnualPercentageRateProperty>;
    fn get_fees_and_commissions_specification(
        &self
    ) -> &[FeesAndCommissionsSpecificationProperty];
    fn take_fees_and_commissions_specification(
        &mut self
    ) -> Vec<FeesAndCommissionsSpecificationProperty>;
    fn get_interest_rate(&self) -> &[InterestRateProperty];
    fn take_interest_rate(&mut self) -> Vec<InterestRateProperty>;
}
Expand description

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

Required Methods§

Implementors§